can i get the GUID machine name ? any script i can look at , or url i can read ?
On Error Resume Next Set objComputer = GetObject("LDAP://CN=atl-dc-01,CN=Computers,DC=fabrikam,DC=com") objProperty = objComputer.Get("objectGUID") If IsNull(objProperty) Then Wscript.Echo "The GUID has not been set for this computer." Else Wscript.Echo "GUID: " & objProperty objProperty = Null End If replace the section CN=atl-dc-01,CN=Computers,DC=fabrikam,DC=com with the distinguishedName of computer you want to find the GUID of. Or you could add in extra code to look up the DN given a machine name.