You are viewing a single comment's thread.

view the rest of the comments →

16078978? ago

GUIDS, GET YOUR GUIDS HERE, HOT OFF THE CACHE

GUID Generator for PowerShell$count = Read-Host "Number of GUIDs to generate"[char]$upper = Read-Host "Upper case? (y/n)"if($upper -eq 'y') { do { $n += 1 [guid]::NewGuid().ToString().ToUpper() } while ($n -lt $count)} elseif ($upper -eq 'n') { do { $n += 1 [guid]::NewGuid() } while ($n -lt $count)} else { Write-Host "Invalid input. Exiting"}