-
-
Save MarkDarwin/088495477555b54d6fedd3b0de616df3 to your computer and use it in GitHub Desktop.
wsus-update
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Function WSUSUpdate { | |
$Criteria = "IsInstalled=0 and Type='Software'" | |
$Searcher = New-Object -ComObject Microsoft.Update.Searcher | |
try { | |
$SearchResult = $Searcher.Search($Criteria).Updates | |
if ($SearchResult.Count -eq 0) { | |
Write-Output "There are no applicable updates." | |
exit | |
} | |
else { | |
$Session = New-Object -ComObject Microsoft.Update.Session | |
$Downloader = $Session.CreateUpdateDownloader() | |
$Downloader.Updates = $SearchResult | |
$Downloader.Download() | |
$Installer = New-Object -ComObject Microsoft.Update.Installer | |
$Installer.Updates = $SearchResult | |
$Result = $Installer.Install() | |
} | |
} | |
catch { | |
Write-Output "There are no applicable updates." | |
} | |
} | |
WSUSUpdate | |
If ($Result.rebootRequired) { Restart-Computer } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment