Nachfolgend ein kurzer Schnipsel zum Abfragen eines Prozesses von einem Remotecomputer im Netzwerk:
PS C:\ Get-Process -ComputerName PC-NAME -Name PROZESS-NAME
Handles NPM(K) PM(K) WS(K) VM(M) CPU(s) Id ProcessName
——- —— —– —– —– —— — ———–
44 4 1300 972 15 1764 AESTSr64
58 8 2092 1728 32 2348 BTHSAmpPalService
211 29 5676 3276 50 5152 BTHSSecurityMgr
82 10 2420 1996 38 4416 CNTAoSMgr
Oder aber mit entsprechend formatierter Tabelle
PS: C:\\ Get-Process -ComputerName PC-NAME -Name PROZESS-NAME|Format-Table -Property ID, ProcessName, MachineName
Id ProcessName MachineName
— ———– ———–
1764 AESTSr64 PC-NAME
2348 BTHSAmpPalService PC-NAME
5152 BTHSSecurityMgr PC-NAME
4416 CNTAoSMgr PC-NAME