I want to generate GUID strings in VBScript. I know that there's no built-in function in VBScript for generating one. I don't want to use random-generated GUIDs. Maybe there is an ActiveX object that can be created using CreateObject() that is sure to be installed on (newer) Windows versions that can generate a GUID?
|
|
Hey, Scripting Guy! How can I create a GUID using a script? says this:
...but also see this question for a potential problem with that. |
||
|
|
|
|
||
|
|
|
|
This function will return a plain GUID, e.g.:
If you want a GUID in a registry format, e.g.:
change the function's last line to
|
||
|
|
