如何使用 Invoke-Command cmdlet 传递变量?

How do I pass variables with the Invoke-Command cmdlet?

我必须从一些服务器获取事件日志,我不想读入找到的每台服务器的凭据。

我尝试使用 ArgumentList 参数传递我的变量,但我没有用。

这是我的代码:

$User = Read-Host -Prompt "Enter Username"
$Password = Read-Host -Prompt "Enter Password" -AsSecureString
$BSTR = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($Password)
$UnsecurePassword = [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($BSTR)

Get-ADComputer -Filter "OperatingSystem -Like '*Server*'" | Sort-Object Name |
ForEach-Object{
    if($_.Name -like '*2008*'){
        Invoke-Command -ComputerName $_.Name -ArgumentList $User, $UnsecurePassword -ScriptBlock {  
            net use P: \Server\dir1\dir2 /persistent:no /user:$User $UnsecurePassword
            Get-EventLog -LogName System -After (Get-Date).AddHours(-12) -EntryType Error, Warning | format-list | 
            out-file P:\EventLog_$env:COMPUTERNAME.log
            net use P: /delete /yes
        }
    }
}

如何使用 Invoke-Command ScriptBlock 中的变量?

要么在脚本块的开头声明参数:

   {  
        param($user,$unsecurepassword)
        net use P: \Server\dir1\dir2 /persistent:no /user:$User $UnsecurePassword
        Get-EventLog -LogName System -After (Get-Date).AddHours(-12) -EntryType Error, Warning | format-list | 
        out-file P:\EventLog_$env:COMPUTERNAME.log
        net use P: /delete /yes
    }

或者您使用 $args 变量访问您的参数:

#first passed parameter
$args[0]
#second passed parameter
$args[1]
....

文档:MSDN

或者您可以使用 $Using:scope。请参阅此 link.

下的示例 5

示例:

$servicesToSearchFor = "*"
Invoke-Command -ComputerName $computer -Credential (Get-Credential) -ScriptBlock { Get-Service $Using:servicesToSearchFor }

使用 $Using:,您不需要 -ArgumentList 参数和脚本块中的 param 块。