Install updates only as admin
This commit is contained in:
parent
7a99482bc8
commit
b034dfd53d
|
@ -124,6 +124,7 @@ $null = New-Module {
|
|||
break;
|
||||
}
|
||||
default {
|
||||
if (Test-Admin) {
|
||||
$null = Import-Module PSWindowsUpdate;
|
||||
|
||||
Invoke-Hook "Invoke-WindowsUpdate" -Fallback {
|
||||
|
@ -134,6 +135,7 @@ $null = New-Module {
|
|||
Restart-Intermediate;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
<#
|
||||
.SYNOPSIS
|
||||
|
|
Loading…
Reference in a new issue