简体   繁体   English

无法使用PowerShell从远程服务器访问环境变量

[英]Can't access Environment Variable from Remote Server with PowerShell

I have a script to query a list of remote windows servers to retrieve the value of an Environment Variable I have created. 我有一个脚本来查询远程Windows服务器列表,以检索我创建的环境变量的值。

I can see that the variable is indeed there because I can see it when I print all variables: $EnvObj : 我可以看到变量确实存在,因为我可以在打印所有变量时看到它: $EnvObj

try 
{
    $Name="MY_VAR"
    $VerbosePreference="Continue"

    # Read a list of server names
    $file = New-Object System.IO.StreamReader -Arg "C:\Users\foo\Documents\test.txt"

    while ($Computer = $file.ReadLine()) 
    {    
        if(!(Test-Connection -ComputerName $Computer -Count 1 -quiet)) 
        {            
            Write-Verbose "$Computer is not online"            
            Continue            
        }            

        try 
        {            
            $EnvObj = @(Get-WMIObject -Class Win32_Environment -ComputerName $Computer -EA Stop)                        
            if(!$EnvObj) 
            {            
               Write-Verbose "$Computer returned empty list of environment variables"            
               Continue            
            }            

            if($Name) 
            {         
                Write-Verbose "Looking for environment variable with the name $name"            
                $Env = $EnvObj | Where-Object {$_.Name -eq $Name}        

                # None of these work but printing $EnvObj shows that $Name ("MY_VAR") is there:
                $res=[environment]::GetEnvironmentVariable($Name, "Process")
                $res1=[environment]::GetEnvironmentVariable($Name, "User")
                $res2=[environment]::GetEnvironmentVariable($Name, "Machine")
                $res4=$Env:Name

                if(!$Env) 
                {            
                    Write-Verbose "$Computer has no environment variable with name $Name"            
                    Continue            
                }                                            
            } 
            else 
            {            
                Write-Verbose "No environment variable specified. Listing all"            
                $EnvObj # shows that the requested environment variable is present            
            }            
        } 
        catch 
        {            
            Write-Verbose "Error occurred while querying $Computer. $_"            
            Continue            
        }           
    }
}
finally
{
    $file.close()
} 

The variable itself is owned by <SYSTEM> : 变量本身由<SYSTEM>拥有:

VariableValue    Name    UserName                                                
-------------    ----    --------                                                
1234            MY_VAR  <SYSTEM> 

But when I try to retrieve it with any of the possible enumerations, it just returns nothing: 但是,当我尝试使用任何可能的枚举检索它时,它只返回任何内容:

None of these work but printing $EnvObj shows that $Name ("MY_VAR") is there: 这些都不起作用,但打印$EnvObj显示$Name ("MY_VAR")在那里:

# .Net way
$res=[environment]::GetEnvironmentVariable($Name, "Process")
$res1=[environment]::GetEnvironmentVariable($Name, "User")
$res2=[environment]::GetEnvironmentVariable($Name, "Machine")

# PS Way
$res4=$Env:Name

... even though when I print the $EnvObj object I can see that $Name is definitely there. ...即使我打印$EnvObj对象,我也可以看到$Name肯定存在。

What is wrong? 怎么了?

Your line 你的路线

$EnvObj = @(Get-WMIObject -Class Win32_Environment -ComputerName $Computer -EA Stop) 

Will return an array of [ManagementObject] . 将返回[ManagementObject]数组。

To examine all the properties you can pipe one of these objects to Get-Member 要检查所有属性,可以将其中一个对象传递给Get-Member

$EnvObj[0] | Get-Member

   TypeName: System.Management.ManagementObject#root\cimv2\Win32_Environment

Name                MemberType    Definition                             
----                ----------    ----------                             
PSComputerName      AliasProperty PSComputerName = __SERVER              
Caption             Property      string Caption {get;set;}              
Description         Property      string Description {get;set;}          
InstallDate         Property      string InstallDate {get;set;}          
Name                Property      string Name {get;set;}                 
Status              Property      string Status {get;set;}               
SystemVariable      Property      bool SystemVariable {get;set;}         
UserName            Property      string UserName {get;set;}             
VariableValue       Property      string VariableValue {get;set;}        
__CLASS             Property      string __CLASS {get;set;}              
__DERIVATION        Property      string[] __DERIVATION {get;set;}       
__DYNASTY           Property      string __DYNASTY {get;set;}            
__GENUS             Property      int __GENUS {get;set;}                 
__NAMESPACE         Property      string __NAMESPACE {get;set;}          
__PATH              Property      string __PATH {get;set;}               
__PROPERTY_COUNT    Property      int __PROPERTY_COUNT {get;set;}        
__RELPATH           Property      string __RELPATH {get;set;}            
__SERVER            Property      string __SERVER {get;set;}             
__SUPERCLASS        Property      string __SUPERCLASS {get;set;}         
PSStatus            PropertySet   PSStatus {Status, Name, SystemVariable}
ConvertFromDateTime ScriptMethod  System.Object ConvertFromDateTime();   
ConvertToDateTime   ScriptMethod  System.Object ConvertToDateTime();    

From this you can see that the value property is called VariableValue . 从中可以看出value属性名为VariableValue

So, 所以,

$EnvLookup = $EnvObj | Where-Object {$_.Name -eq $Name}
$res = $EnvLookup.VariableValue

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM