LoginSignup
7
8

More than 5 years have passed since last update.

【メモ】PowerShellでGuidを取得

Last updated at Posted at 2016-11-24

コマンドラインからワンライナーで

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:\>
7
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
8