1
1

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 3 years have passed since last update.

PowerShellで再起動の保留状態を確認する

Posted at

概要

クラウド上でWindowsマシンを構築したりするときに役立ちそうなのでメモしておく。

コマンド

再起動が必要であることを判定する

RebootRequired のキーは、再起動が必要な場合にキーが存在する。
何度か叩いてみるとインストール中にセットされることもあるので RebootPending とはまた役割が異なる。

Test-Path 'HKLM:SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired'

再起動が保留中であることを判定する

RebootPending のキーは、再起動が保留中のときだけキーが存在する。

Test-Path 'HKLM\Software\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending'

次のような画面が表示されるとき RebootPending が True になる。
Windows 10 2004 でいつもと違う再起動ダイアログが出たときは、なぜかこのキーが存在しないままであった。機能的に大きな改修が入るときは、例外があるのか?

image.png

参考

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?