miroir de
https://github.com/massgravel/Microsoft-Activation-Scripts.git
synchronisé 2024-11-16 06:20:50 +01:00
Fix bug in pending reboot check
Cette révision appartient à :
Parent
0c1d091c7e
révision
1c4e85b3e2
1 fichiers modifiés avec 2 ajouts et 2 suppressions
|
@ -742,8 +742,8 @@ exit /b
|
||||||
function Test-PendingReboot
|
function Test-PendingReboot
|
||||||
{
|
{
|
||||||
if (Test-Path -Path "$env:windir\WinSxS\pending.xml") { return $true }
|
if (Test-Path -Path "$env:windir\WinSxS\pending.xml") { return $true }
|
||||||
if (Get-ChildItem "HKLM:\Software\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending" -EA Ignore) { return $true }
|
if (Get-ChildItem "HKLM:\Software\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending" -EA SilentlyContinue) { return $true }
|
||||||
if (Get-Item "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired" -EA Ignore) { return $true }
|
if (Get-Item "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired" -EA SilentlyContinue) { return $true }
|
||||||
try {
|
try {
|
||||||
$util = [wmiclass]"\\.\root\ccm\clientsdk:CCM_ClientUtilities"
|
$util = [wmiclass]"\\.\root\ccm\clientsdk:CCM_ClientUtilities"
|
||||||
$status = $util.DetermineIfRebootPending()
|
$status = $util.DetermineIfRebootPending()
|
||||||
|
|
Chargement…
Référencer dans un nouveau ticket