RegistryHive Enumeración
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Representa los posibles valores de un nodo de nivel superior en un equipo externo.
public enum class RegistryHive
public enum RegistryHive
[System.Serializable]
public enum RegistryHive
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public enum RegistryHive
type RegistryHive =
[<System.Serializable>]
type RegistryHive =
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type RegistryHive =
Public Enum RegistryHive
- Herencia
- Atributos
Campos
ClassesRoot | -2147483648 | Representa la clave base HKEY_CLASSES_ROOT en otro equipo. Este valor se puede pasar al método OpenRemoteBaseKey(RegistryHive, String) para abrir este nodo de forma remota. |
CurrentConfig | -2147483643 | Representa la clave base HKEY_CURRENT_CONFIG en otro equipo. Este valor se puede pasar al método OpenRemoteBaseKey(RegistryHive, String) para abrir este nodo de forma remota. |
CurrentUser | -2147483647 | Representa la clave base HKEY_CURRENT_USER en otro equipo. Este valor se puede pasar al método OpenRemoteBaseKey(RegistryHive, String) para abrir este nodo de forma remota. |
DynData | -2147483642 | Representa la clave base HKEY_DYN_DATA en otro equipo. Este valor se puede pasar al método OpenRemoteBaseKey(RegistryHive, String) para abrir este nodo de forma remota. |
LocalMachine | -2147483646 | Representa la clave base HKEY_LOCAL_MACHINE en otro equipo. Este valor se puede pasar al método OpenRemoteBaseKey(RegistryHive, String) para abrir este nodo de forma remota. |
PerformanceData | -2147483644 | Representa la clave base HKEY_PERFORMANCE_DATA en otro equipo. Este valor se puede pasar al método OpenRemoteBaseKey(RegistryHive, String) para abrir este nodo de forma remota. |
Users | -2147483645 | Representa la clave base HKEY_USERS en otro equipo. Este valor se puede pasar al método OpenRemoteBaseKey(RegistryHive, String) para abrir este nodo de forma remota. |
Ejemplos
En el ejemplo de código siguiente se muestra cómo abrir una clave del Registro en un equipo remoto y enumerar los valores de la clave. El equipo remoto debe ejecutar el servicio de registro remoto. Especifique el nombre del equipo remoto como argumento de línea de comandos al invocar el programa.
using namespace System;
using namespace System::IO;
using namespace System::Security::Permissions;
using namespace Microsoft::Win32;
int main( int argc, char *argv[] )
{
RegistryKey ^ environmentKey;
// Check that an argument was specified when the
// program was invoked.
if ( argc == 1 )
{
Console::WriteLine( "Error: The name of the remote computer "
"must be specified as input on the command line." );
return -1;
}
try
{
// Open HKEY_CURRENT_USER\Environment on a remote computer.
environmentKey = RegistryKey::OpenRemoteBaseKey( RegistryHive::CurrentUser, gcnew String(argv[ 1 ]) )->OpenSubKey( "Environment" );
}
catch ( IOException^ e )
{
Console::WriteLine( "{0}: {1}", e->GetType()->Name, e->Message );
return -1;
}
// Print the values.
Console::WriteLine( "\nThere are {0} values for {1}.", environmentKey->ValueCount.ToString(), environmentKey->Name );
array<String^>^valueNames = environmentKey->GetValueNames();
for ( int i = 0; i < environmentKey->ValueCount; i++ )
{
Console::WriteLine( "{0,-20}: {1}", valueNames[ i ], environmentKey->GetValue( valueNames[ i ] )->ToString() );
}
// Close the registry key.
environmentKey->Close();
}
using System;
using System.IO;
using System.Security.Permissions;
using Microsoft.Win32;
class RemoteKey
{
static void Main(string[] args)
{
RegistryKey environmentKey;
string remoteName;
// Check that an argument was specified when the
// program was invoked.
if(args.Length == 0)
{
Console.WriteLine("Error: The name of the remote " +
"computer must be specified when the program is " +
"invoked.");
return;
}
else
{
remoteName = args[0];
}
try
{
// Open HKEY_CURRENT_USER\Environment
// on a remote computer.
environmentKey = RegistryKey.OpenRemoteBaseKey(
RegistryHive.CurrentUser, remoteName).OpenSubKey(
"Environment");
}
catch(IOException e)
{
Console.WriteLine("{0}: {1}",
e.GetType().Name, e.Message);
return;
}
// Print the values.
Console.WriteLine("\nThere are {0} values for {1}.",
environmentKey.ValueCount.ToString(),
environmentKey.Name);
foreach(string valueName in environmentKey.GetValueNames())
{
Console.WriteLine("{0,-20}: {1}", valueName,
environmentKey.GetValue(valueName).ToString());
}
// Close the registry key.
environmentKey.Close();
}
}
Imports System.IO
Imports System.Security.Permissions
Imports Microsoft.Win32
Public Class RemoteKey
Shared Sub Main(commandLineArgs As String())
Dim environmentKey As RegistryKey
' Check that an argument was specified when the
' program was invoked.
If commandLineArgs.Length = 0 Then
Console.WriteLine("Error: The name of the remote " & _
"computer must be specified as input on the " & _
"command line.")
Return
End If
Try
' Open HKEY_CURRENT_USER\Environment on a remote computer.
environmentKey = RegistryKey.OpenRemoteBaseKey( _
RegistryHive.CurrentUser, _
commandLineArgs(0)).OpenSubKey("Environment")
Catch ex As IOException
Console.WriteLine("{0}: {1}", _
ex.GetType().Name, ex.Message)
Return
End Try
' Print the values.
Console.WriteLine("\nThere are {0} values For {1}.", _
environmentKey.ValueCount.ToString(), environmentKey.Name)
For Each valueName As String In environmentKey.GetValueNames()
Console.WriteLine("{0,-20}: {1}", valueName, _
environmentKey.GetValue(valueName).ToString())
Next
' Close the registry key.
environmentKey.Close()
End Sub
End Class
Comentarios
RegistryHive
El OpenRemoteBaseKey método usa valores para representar el nodo de nivel superior de una clave solicitada en una máquina externa (remota). El nodo que se puede abrir con el método OpenRemoteBaseKey debe ser uno de estos niveles superiores RegistryKeys
. El acceso adicional a las subclaves del nodo identificado está disponible mediante métodos en RegistryKey, siempre y cuando el usuario tenga el permiso adecuado.