Client Management Suite

 View Only

GUIDGen... 'Cuz we all need 'em once in a while. 

Jul 18, 2007 11:49 AM

Here's a quick and simple little GUID generator that I like to use when creating custom inventory special groups. I run this tool to get me the GUID I need to post in the .XML and the AuditPls file. Clean and simple.

License:AJSL
By clicking the download link below, you agree to the terms and conditions in the Altiris Juice Software License
Support:User-contributed tools on the Juice are not supported by Altiris Technical Support. If you have questions about a tool, please communicate directly with the author by visiting their profile page and clicking the 'contact' tab.

Statistics
0 Favorited
0 Views
1 Files
0 Shares
0 Downloads
Attachment(s)
zip file
GUIDGEN.zip   5 KB   1 version
Uploaded - Feb 25, 2020

Tags and Keywords

Comments

Jul 30, 2007 03:08 AM

Altiris has been recommending this tool for quite some time (Ever since Inventory Solution 6.1 was released).
You simply choose the Registry Format option.

Jul 18, 2007 03:53 PM

Have in mind that it will not create true GUIDs as all letters must be in uppercase.
You could also use this quick and simple vbscript:
Dim sGUID
sGUID = GenerateGUID()
WScript.Echo "GUID: " & sGUID
Function GenerateGUID()
Dim TypeLib
Set TypeLib = CreateObject("Scriptlet.TypeLib")

GenerateGUID = Left(TypeLib.Guid, Len(TypeLib.Guid)-2)
Set TypeLib = Nothing
End Function

Related Entries and Links

No Related Resource entered.