Generate a list of GUID's
Sometimes you just need a lot of GUID's while programming. Ofcourse you could use the Visual Studio GUID tool, bu that is a lot of work.
Open a PowerShell console, and paste in the following line to get a list of 100 guid's:
$i=100; while ($i-- -gt 0) { Write-Host ([System.Guid]::NewGuid()) }