Skip to content

Instantly share code, notes, and snippets.

@gen0cide
Created October 12, 2016 18:50
Show Gist options
  • Save gen0cide/5bd7df12a73f50ba5a6965058ccca74f to your computer and use it in GitHub Desktop.
Save gen0cide/5bd7df12a73f50ba5a6965058ccca74f to your computer and use it in GitHub Desktop.
$Searcher = New-Object -ComObject Microsoft.Update.Searcher
$RemoveCollection = New-Object -ComObject Microsoft.Update.UpdateColl
$SearchResult = $Searcher.Search("IsInstalled=1")
$SearchResult.Updates | % { $RemoveCollection.Add($_) }
if ($RemoveCollection.Count -gt 0) {
$Installer = New-Object -ComObject Microsoft.Update.Installer
$Installer.Updates = $RemoveCollection
$Installer.Uninstall()
} else {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment