Somacon.com: Articles on web development, software, and hardware

§ Home > Index > General Interest

Generate GUID Online

Use this utility to generate a UUID/GUID on the web. UUID/GUID stand for Globally/Universally Unique Identifier. It uses the DATA::UUID Perl module by Alexander Golomshtok. It is running on Linux.

Click the button to run the GUID/UUID generator. It will return a different one each time.

If you are on Windows, you can use the simple VBScript below to generate a UUID. Just save the code to a file called createguid.vbs, and then run cscript createguid.vbs at a command prompt.

Set TypeLib = CreateObject("Scriptlet.TypeLib")
NewGUID = TypeLib.Guid
WScript.Echo(left(NewGUID, len(NewGUID)-2))
Set TypeLib = Nothing

If you have the Microsoft SDK installed on your system, you can use the utility uuidgen.exe, which is located in the "C:\Program Files\Microsoft SDK\Bin" directory.

If you are using PHP, use the uniqid function as described in the uniqid documentation.

Links

Link to this page: <a href="http://www.somacon.com/p113.php">Generate GUID Online</a>

Contact · Search · Print · Social bookmark this page · E-mail this page
Created 2004-11-20, Last Modified 2007-01-17, © Shailesh N. Humbad
Disclaimer: This content is provided as-is. The information may be incorrect.