我不明白,远程服务器上的响应是空的。
Get-Process explorer -ComputerName vcass1 | select name,id,responding
Name Id Responding
---- -- ----------
explorer 1204
explorer 3020
但回应我真的很空:
Get-Process explorer -ComputerName vcass1 | Where-Object {$_.Responding -eq $true}
>> No result
Get-Process explorer -ComputerName vcass1 | Where-Object {$_.Responding -eq $false}
>> No result
当我尝试使用:-ComputerName localhost我有同样的问题,但没有-ComputerName我对每个进程都有价值$True !