Windows Powershellによるサービスを停止する方法を紹介
サービスを停止
サンプルソース
サービス名で停止
(入力)
Stop-Service -name "Audiosrv"
(出力)
なし
サンプルソース
表示名で停止
(入力)
Stop-Service -displayname "Windows Audio"
(出力)
なし
サンプルソース
強制的にサービスを停止
(入力)
Stop-Service -name "Audiosrv" -force
(出力)
なし