Como: Gravar dados no registro do Windows

O exemplo de código a seguir usa o CurrentUser chave para criar uma instância gravável a RegistryKey classe correspondente a Software key.The CreateSubKey método é usado para criar uma nova chave e adicione a pares chave/valor.

Exemplo

Código

// registry_write.cpp
// compile with: /clr
using namespace System;
using namespace Microsoft::Win32;

int main()
{
   // The second OpenSubKey argument indicates that
   // the subkey should be writable. 
   RegistryKey^ rk;
   rk  = Registry::CurrentUser->OpenSubKey("Software", true);
   if (!rk)
   {
      Console::WriteLine("Failed to open CurrentUser/Software key");
      return -1;
   }

   RegistryKey^ nk = rk->CreateSubKey("NewRegKey");
   if (!nk)
   {
      Console::WriteLine("Failed to create 'NewRegKey'");
      return -1;
   }

   String^ newValue = "NewValue";
   try
   {
      nk->SetValue("NewKey", newValue);
      nk->SetValue("NewKey2", 44);
   }
   catch (Exception^)
   {
      Console::WriteLine("Failed to set new values in 'NewRegKey'");
      return -1;
   }

   Console::WriteLine("New key created.");
   Console::Write("Use REGEDIT.EXE to verify ");
   Console::WriteLine("'CURRENTUSER/Software/NewRegKey'\n");
   return 0;
}

Comentários

Você pode usar o .NET estrutura para acessar o registro com o Registry e RegistryKey classes, que são definidos no Microsoft.Win32 espaço para nome. The Registro classe é um contêiner para instâncias estático do RegistryKey classe. Cada instância representa um nó de raiz do registro.As instâncias são ClassesRoot, CurrentConfig, CurrentUser, LocalMachine, e Users.

Consulte também

Conceitos

Como: Ler dados do registro do Windows

Outros recursos

Guia de programação .NET