我不明白,遠程服務器上的響應是空的。如何使用Powershell在遠程服務器上無法響應進程
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本地主機我有同樣的問題,但沒有-ComputerName我纔有價值$真爲每個過程!