Powershellでサービス名をリモートで確認するコマンド
サーバ等にリモートデスクトップでログインせずに、クライアント端末からPowershellでサービス名を確認できます。
1 |
Get-Service –ComputerName 192.168.1.1 |
*IPアドレスは適宜置き換えてください。
リモートでサービス名を取得するコマンド実行結果のサンプル
Status Name DisplayName
------ ---- -----------
Stopped AeLookupSvc Application Experience
Stopped ALG Application Layer Gateway Service
Running AppHostSvc Application Host Helper Service
Stopped AppIDSvc Application Identity
Stopped Appinfo Application Information
Stopped AppMgmt Application Management
Stopped AudioEndpointBu... Windows Audio Endpoint Builder
Stopped AudioSrv Windows Audio
Stopped BITS Background Intelligent Transfer Ser...
Stopped Browser Computer Browser
~中略~
Running wuauserv Windows Update
Stopped wudfsvc Windows Driver Foundation - User-mo...
サービス名を絞り込みたい場合
|(パイプ)で区切り、Where-ObjectでSQL風にサービス名を指定する。
1 |
Get-Service -ComputerName 192.168.1.1 | Where-Object {$_.DisplayName -like '*DHCP*'} |
*IPアドレスは適宜置き換えてください。
リモートでサービス名を取得するコマンド実行結果のサンプル(抽出バージョン)
Status Name DisplayName
------ ---- -----------
Running Dhcp DHCP Client