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?

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

Hey, Scripting Guy! How can I create a GUID using a script? says this:

Set TypeLib = CreateObject("Scriptlet.TypeLib")
Wscript.Echo TypeLib.Guid

...but also see this question for a potential problem with that.

link|improve this answer
Thanks! I like the "Hey, Scripting Guy!" link! – vividos Jun 9 '09 at 21:50
feedback
Function CreateGUID
  Dim TypeLib
  Set TypeLib = CreateObject("Scriptlet.TypeLib")
  CreateGUID = Mid(TypeLib.Guid, 2, 36)
End Function

This function will return a plain GUID, e.g., 47BC69BD-06A5-4617-B730-B644DBCD40A9.

If you want a GUID in a registry format, e.g., {47BC69BD-06A5-4617-B730-B644DBCD40A9}, change the function's last line to

CreateGUID = Left(TypeLib.Guid, 38)
link|improve this answer
feedback
Set tlib = Server.CreateObject("Scriptlet.TypeLib")
strGuid = tlib.Guid
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.