2013-04-12 41 views
0

我不明白,遠程服務器上的響應是空的。如何使用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我纔有價值$真爲每個過程!

回答

2

按照help on MSDN你應該得到一個NotSupportedException錯誤indictaing說:

您試圖訪問的響應特性的過程 這是一個遠程計算機上運行。對於在本地計算機上運行的進程,此屬性僅可用 。

0

如果遠程服務器在Windows 2012上,您可以遠程讀取響應狀態。

相關問題