PowerShell サービスを開始/終了する方法
環境
Windows 10 Home 64bit
PowerShell
操作方法
PowerShellは、「管理者として実行」で起動します。
1.サービスを開始する
Start-Service -Name 'サービス名’
操作例
PS C:\WINDOWS\system32> Start-Service -Name 'postgresql-x64-13'
戻り値を表示
-PassThruをつけると戻り値が表示されます。
PS C:\WINDOWS\system32> Start-Service -Name 'postgresql-x64-13' -PassThru
2.サービスを終了する(Stop-Service)
PS C:\WINDOWS\system32> Stop-Service -Name 'postgresql-x64-13'
戻り値を表示
PS C:\WINDOWS\system32> Stop-Service -Name 'postgresql-x64-13' -PassThru
3.サービスの状態を取得する(Get-Service)
Get-Service 'サービス名’
Get-Serviceでサービスの状態を取得できます。
Get-Service 'postgresql-x64-13'
4.ステータスのみ取得
select-objectで取得したい項目を指定します。
Get-Service 'postgresql-x64-13' | select-object status