コンピュータを再起動する、シャットダウンする

コンピュータを再起動するには Restart-Computer コマンドを使います。シャットダウンするには Stop-Computer コマンドを使います。どちらのコマンドも強制的に実施するのが -Force オプションで、実施をユーザに確認するのが -Confirm オプションです。

コンピュータを再起動する

# 単純に再起動する.
PS C:\tmp> Restart-Computer

# 別のプロセスが動いていても強制的に再起動する.
PS C:\tmp> Restart-Computer -Force

# 再起動するかどうかコンソールで Yes/No をたずねつつ、強制的に再起動する.
PS C:\tmp> Restart-Computer -Confirm -Force

Confirm
Are you sure you want to perform this action?
Performing the operation "Enable the Local shutdown access rights and restart the computer." on target "localhost (MY_MACHINE)".
[Y] Yes  [A] Yes to All  [N] No  [L] No to All  [S] Suspend  [?] Help (default is "Y"):

コンピュータをシャットダウンする

# 単純にシャットダウンする.
PS C:\tmp> Stop-Computer

# 別のプロセスが動いていても強制的にシャットダウンする.
PS C:\tmp> Stop-Computer -Force

# シャットダウンするかどうかコンソールで Yes/No をたずねつつ、強制的に再起動する.
PS C:\tmp> Stop-Computer -Confirm -Force

Confirm
Are you sure you want to perform this action?
Performing the operation "Stop-Computer" on target "localhost (MY_MACHINE)".
[Y] Yes  [A] Yes to All  [N] No  [L] No to All  [S] Suspend  [?] Help (default is "Y"):