O artigo Script para instalar ou atualizar drivers diretamente do Catálogo da Microsoft contém um script do PowerShell para fazer o que é solicitado.
O artigo inclui boas explicações de cada parte do script. Eu reproduzo abaixo apenas o script nu com apenas pequenas alterações (que eu não testei):
#search and list all missing Drivers
$Session = New-Object -ComObject Microsoft.Update.Session
$Searcher = $Session.CreateUpdateSearcher()
$Searcher.ServiceID = '7971f918-a847-4430-9279-4a52d1efe18d'
$Searcher.SearchScope = 1 # MachineOnly
$Searcher.ServerSelection = 3 # Third Party
$Criteria = "IsInstalled=0 and Type='Driver' and ISHidden=0"
Write-Host('Searching Driver-Updates...') -Fore Green
$SearchResult = $Searcher.Search($Criteria)
$Updates = $SearchResult.Updates
#Show available Drivers
$Updates | select Title, DriverModel, DriverVerDate, Driverclass, DriverManufacturer | fl
#Download the Drivers from Microsoft
$UpdatesToDownload = New-Object -Com Microsoft.Update.UpdateColl
$updates | % { $UpdatesToDownload.Add($_) | out-null }
Write-Host('Downloading Drivers...') -Fore Green
$UpdateSession = New-Object -Com Microsoft.Update.Session
$Downloader = $UpdateSession.CreateUpdateDownloader()
$Downloader.Updates = $UpdatesToDownload
$Downloader.Download()
#Check if the Drivers are all downloaded and trigger the Installation
$UpdatesToInstall = New-Object -Com Microsoft.Update.UpdateColl
$updates | % { if($_.IsDownloaded) { $UpdatesToInstall.Add($_) | out-null } }
Write-Host('Installing Drivers...') -Fore Green
$Installer = $UpdateSession.CreateUpdateInstaller()
$Installer.Updates = $UpdatesToInstall
$InstallationResult = $Installer.Install()
if($InstallationResult.RebootRequired) {
Write-Host('Reboot required! please reboot now..') -Fore Red
} else { Write-Host('Done..') -Fore Green }
Um pacote de propósito geral e poderoso é PSWindowsUpdate .
Aqui estão alguns tutoriais sobre como instalar e usar:
- Windows 10: atualize e atualize o Windows 10 usando o PowerShell .
- Gerenciando atualizações do Windows com o PowerShell
O pacote adiciona o comando Get-WUInstall
(e outros) com o qual você pode
obtenha e instale atualizações.
A fonte de Get-WUInstall
também está disponível separadamente
do github .
Outro exemplo sobre seu uso é encontrado no artigo PS Script para automatizar as atualizações do Windows e do MS .