Tập lệnh bài viết
để cài đặt hoặc cập nhật trình điều khiển trực tiếp từ Danh mục Microsoft
chứa tập lệnh PowerShell để thực hiện những gì được yêu cầu.
Bài viết bao gồm các giải thích tốt về từng phần của kịch bản. Tôi chỉ sao chép kịch bản dưới đây chỉ với những thay đổi nhỏ (mà tôi chưa thử nghiệm):
#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 }
Gói đa năng và mạnh mẽ là
PSWindowsUpdate .
Dưới đây là một vài hướng dẫn về cài đặt và sử dụng nó:
Gói thêm Get-WUInstall
lệnh (và các lệnh khác) mà bạn có thể nhận và cài đặt các bản cập nhật. Nguồn của Get-WUInstall
cũng có sẵn riêng biệt
từ github .
Một ví dụ khác về việc sử dụng nó được tìm thấy trong bài viết
PS Script để tự động hóa Windows và MS Updates .