如何使用Invoke-Command cmdlet传递variables?

我必须从某些服务器获取事件日志,而且我不想读取每个find的服务器的凭据。

我试图通过使用ArgumentListparameter passing我的variables,但我不工作。

这是我的代码:

$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中使用variables?

您可以在脚本块的开头声明参数:

  { 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 } 

或者你使用$argsvariables来访问你的参数:

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

文档: MSDN

或者,您可以使用$Using:作用域。 请参阅此链接下的示例5。

例:

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

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