Last active
September 3, 2015 18:17
Create Unique Key from Guid
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Guid.NewGuid().ToString().Replace("-","").Dump(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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