I am working on an internal site that needs to grab the workstation name in a form that can be passed.
Is this possible?
I have it set up that x.js runs and the data comes up in a popup.
I have no idea how to pass that data. Maybe I'm going down the wrong path.
Pls help
the x.js
var WshNetwork = WScript.CreateObject("WScript.Network");
WScript.echo ("Computer Name = " + WshNetwork.ComputerName);
Is this possible?
I have it set up that x.js runs and the data comes up in a popup.
I have no idea how to pass that data. Maybe I'm going down the wrong path.
Pls help
the x.js
var WshNetwork = WScript.CreateObject("WScript.Network");
WScript.echo ("Computer Name = " + WshNetwork.ComputerName);
Comment