Returns the name of the computer system.
object.ComputerName
The ComputerName property contains a string value indicating the name of the computer system.
The following example demonstrates the use of the ComputerName property.
<package> <job id="vbs"> <script language="VBScript"> Set WshNetwork = WScript.CreateObject("WScript.Network") WScript.Echo "Domain = " & WshNetwork.UserDomain WScript.Echo "Computer Name = " & WshNetwork.ComputerName
WScript.Echo "User Name = " & WshNetwork.UserName </script> </job> <job id="js"> <script language="JScript"> var WshNetwork = WScript.CreateObject("WScript.Network"); WScript.Echo("Domain = " + WshNetwork.UserDomain); WScript.Echo("Computer Name = " + WshNetwork.ComputerName
); WScript.Echo("User Name = " + WshNetwork.UserName); } </script> </job> </package>