0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

WindowsでCUIを使ってOSを再起動する方法

Posted at

概要

リモートPCの再起動を実行したときに再起動が完了せず
リモートデスクトップ接続もできない状況になった。
opensshでの接続は可能だったためSSHで接続してCUI
を使ってOSを再起動したときの記録のメモである。

再起動方法

shutdownコマンド

基本はshutdownコマンドを使えばよい。
下記のコマンドは10秒後に再起動を実行するコマンドである。

shutdown -r -t 10

winlogon.exeを停止する

shutdownコマンドで再起動することができない場合は、
最後の手段としてwinlogon.exeを停止する。
windlogon.exeはtaskkillでは止められないため、
wmiコマンドか、Sysinternalsにあるpskillコマンドを使うと停止することができる。

1. wmiコマンドを使う方法

wmiコマンドを使うと、タスク停止することができる。

wmic process where "name='winlogon.exe'" delete
2. pskillを使う方法

pskillを使えば、リモートのPCのタスクも停止できるようだが、
リモートのWindows 10で試したがうまくいかなかった。

pskill \Computer-Name winlogon

参考

タスクマネージャーで特定のプロセスを強制終了できない時の対処法 – Windows10

PsKill v1.16

プロセスの終了が出来ない場合のコマンド

A system shutdown is in progress.(1115)

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?