Summary: Use Windows PowerShell to create a new GUID.
How can I use Windows PowerShell to easily generate a new GUID for a project.?
Use the New-Guid cmdlet.
If you need to create more than one, you can use code such as the following (% is an alias for Foreach-Object):
1..4 | % {new-guid}