#コマンドラインからワンライナーで
C:\powershell -Command "[Guid]::NewGuid()"
Guid
----
2fb0baeb-e75e-456c-9808-90b08fc8a4fe
#PowerShellで
C:\>powershell
Windows PowerShell
Copyright (C) 2016 Microsoft Corporation. All rights reserved.
PS C:\> [Guid]::NewGuid()
Guid
----
a16d7193-a58c-428c-8f44-6ac06b849f80
PS C:\>