# Note: Net framework なら、型の完全限定名を元に GUID を振ってくれる C# ```csharp System.Guid guidValue = System.Guid.NewGuid(); ``` cmd.exe ``` powershell -Command "[Guid]::NewGuid()" ``` powershell.exe ``` PS> [Guid]::NewGuid() ```