Skip to content

Instantly share code, notes, and snippets.

@guitarrapc
Last active September 3, 2015 18:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guitarrapc/49f28bb5b1d7087cdedd to your computer and use it in GitHub Desktop.
Save guitarrapc/49f28bb5b1d7087cdedd to your computer and use it in GitHub Desktop.
Create Unique Key from Guid
Guid.NewGuid().ToString().Replace("-","").Dump();
[Guid]::NewGuid().ToString().Replace("-","")
# PowerShell v5 and later can be...
(New-Guid).ToString().Replace("-","")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment