Posted in
Windows Powershell |
No Comment | 2,240 views | 04/05/2012 01:35
If you need to create GUID on Powershell, just you can type:
[System.Guid]::NewGuid().toString() |
[System.Guid]::NewGuid().toString()
This command will give you something like this:
5f43a2ed-1dca-47d8-a0b8-18c7f0dbf03c
That’s all!