How do I locate the GUID of my computer?
Thanks!
Try this VBScript program:
======
Option Explicit
Dim objComputer, strComputer
strComputer = "MyComputer"
Set objComputer = GetObject("WinNT://" & strComputer)
Wscript.Echo objComputer.GUID
======
Change the name for your computer. Or, for the local computer you can use:
strComputer = "."
Save this program in a text file with *.vbs extension. You can run it by
double clicking the file.
--
Richard Mueller
MVP Directory Services
Hilltop Lab - http://www.rlmueller.net
--