0

我有时想从我们的域中的服务器检查一些信息。在此示例中,我尝试远程获取 Windows 版本(只有一台服务器,当前没有循环):

$cr=Get-Credential "domain\adm_user"
$computer="serverA"
Invoke-Command { Get-WmiObject -Class Win32_OperatingSystem -Namespace root/cimv2 -Computer $computer -Credential $cr | Format-List -Property Name, OSArchitecture, SerialNumber} -AsJob -ComputerName .
Get-Job | Wait-Job
Get-Job | Receive-Job

输出:

Cannot validate argument on parameter 'ComputerName'. The argument is null or empty. Supply an argument that is not null or empty and then try the command again.

似乎,那个 scriptblock {} 看不到 variable $computer。当我将变量替换-computer $computer为服务器名称时,它正在工作。

4

1 回答 1

1

对于 Invoke-Command 中的变量扩展,请使用 param 块并指定参数:

$computer = 'localhost'
Invoke-Command {param($computer) Get-WmiObject Win32_OperatingSystem -Computername $computer } -ArgumentList $computer

在 PS v5 上工作。

于 2017-05-31T10:59:48.323 回答