Skip to content

Instantly share code, notes, and snippets.

@MarkDarwin
Forked from jacobludriks/wsus-update.ps1
Created January 19, 2017 17:10
Show Gist options
  • Save MarkDarwin/088495477555b54d6fedd3b0de616df3 to your computer and use it in GitHub Desktop.
Save MarkDarwin/088495477555b54d6fedd3b0de616df3 to your computer and use it in GitHub Desktop.
wsus-update
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