Valor do registro do Powershell a ser usado como variável

5

Estou vendo como retornar um valor do registro. Eu só quero o valor AGENTGUID deste comando.

$reg=reg query "\$computer\HKLM\SOFTWARE\Wow6432Node\Network Associates\ePolicy Orchestrator\Agent" /v Agentguid

$reg retornará isso como uma linha. Eu só preciso de {F789B761-81BE-4357-830B-368B5B3CF5E5} HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Network Associates\ePolicy Orchestrator\Agent Aentguid REG_SZ {F789B761-81BE-4357-830B-368B5B3CF5E5}

    
por CWL 01.09.2012 / 15:30

1 resposta

4

Eu esqueceria de descartar o REG.EXE e usar comandos nativos do PowerShell (nesse caso, você precisa de um pouco de mágica .NET):

function getAgentGUID() {

    param( [String] $computername = "" );

    [String]                      $Local:strServerName     = $computername;
    [Microsoft.Win32.RegistryKey] $Local:objHKLMRootRegKey = $null;
    [Microsoft.Win32.RegistryKey] $Local:objMyKey          = $null;
    [String]                      $Local:strAgentGUID      = "";

    try {
        $objHKLMRootRegKey = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey( [Microsoft.Win32.RegistryHive]::LocalMachine, $strServerName )

        try {
            $objMyKey = $objHKLMRootRegKey.OpenSubKey( "SOFTWARE\Wow6432Node\Network Associates\ePolicy Orchestrator\Agent" );
            $strAgentGUID = $objMyKey.GetValue( "Agentguid" );
            } #try
        catch { 
            Write-Error -Message "ERROR : Failed to get AgentGUID value.";
            } #catch

        } #try
    catch {
        Write-Error -Message "ERROR : Failed to connect to remote registry.";
        } #catch

return $strAgentGUID;
}


#
# Get the McAfee agent GUID for remote machine called fred.
#

[String] $Local:strAgentGUID = getAgentGUID -computer "fred";

Write-Host -foregroundColor "red" -backgroundColor "white" -Object ( "GUID is : [" + $strAgentGUID + "]" );

exit;
    
por 01.09.2012 / 17:31