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 the
' Returns a unique Guid on every call. Removes any cruft.
Function CreateGuid()
CreateGuid = Left(CreateObject("Scriptlet.TypeLib").Guid,38)
End Function