Per creare un GUID valido per Windows hai varie possibilità:

1) andare in Visual Studio \ Tools \ Create GUID (solitamente presente nel percorso C:\Program Files\Microsoft Visual Studio 8\Common7\Tools\guidgen.exe) e selezionare Registry Format

2) oppure in Sql Server scrivendo

SQL

select newid()

3) creare una semplice console application C# con notepad:

C#: GuidGenerator.cs

using System;

class GuidGenerator
{
  static void Main(string[] args)
  {
    Guid guid = Guid.NewGuid();
    Console.WriteLine(
      string.Format("Guid: {0}", guid.ToUpper())
    );
  }
}
e compilarla con il seguente comando

DOS / Batch file: make.bat

SET MAKE=C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\csc.exe
%MAKE% /t:exe /out:GuidGenerator.exe /recurse:*.cs
ogni volta che viene lanciata visualizza un nuovo guid.

4) in alternativa da PowerShell

PowerShell

[System.Guid]::NewGuid()

In ultimo puoi usare GUID generator
Tags:
C#236 .NET66 Esempi225 PowerShell200 SharePoint498 SharePoint 2007218 SQL Server100 T-SQL66 Utility59
Potrebbe interessarti anche: