PowerShell에서 재부팅 보류 상태 확인

1563 단어 PowerShell

개요



클라우드상에서 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에서 평소와 다른 재시작 대화 상자가 나왔을 때는 왠지 이 키가 존재하지 않은 채로 있었다. 기능적으로 큰 리노베이션이 들어갈 때 예외가 있습니까?



참고


  • How to check for a pending reboot (automated with PowerShell)
  • Use PowerShell to test if a Windows server is pending a reboot – 4sysops
  • 좋은 웹페이지 즐겨찾기