サービスの調査
Get-Service <サービス名>
このサービス「に」依存するシステム
Get-Service <サービス名> –RequiredServices
このサービス「が」依存するシステム
Get-Service <サービス名> –DependentServices
ステータスで並び替える
Get-Service | Sort-Object status
サービス名で並び替える
Get-Service | Sort-Object name
表示名で並び替える
Get-Service | Sort-Object displayname
降順で並び替える
Get-Service | Sort-Object displayname –Descending
【サービスの開始・停止・一時停止・再起動】
サービスの開始
Start-Service –Name <サービス名> –PassThru
サービスの停止
Stop-Service –Name <サービス名> –PassThru
サービスの一時停止
Suspend-Service –Name <サービス名> –PassThru
サービスの再起動
Sestart-Service –Name <サービス名> –PassThru
- Name以外に-DisplayNameも可能です。
- PathThruはサービスを表すオブジェクトが実行結果として返ってきます
コメント
最新を表示する
NG表示方式
NGID一覧