powershell windows缺少更新

时间:2014-04-25 19:19:50

标签: windows powershell updates

尝试创建powershell脚本以列出缺少或挂起的Windows更新。目的是针对计算机/服务器列表运行脚本,以查看是否有任何缺失的更新或热修复,并生成您需要查看的服务器列表。

有没有人有这方面的解决方案,一直在寻找没有成功找到脚本来做到这一点。

2 个答案:

答案 0 :(得分:1)

TechNet提供了一个示例脚本,用于执行您正在寻找的核心逻辑:

Get-WindowsUpdates.ps1

还有较旧的VBScript-based WUA_SearchDownloadInstall.vbs

答案 1 :(得分:0)

Powershell脚本列出缺少的更新

脚本:

Set-ExecutionPolicy -ExecutionPolicy Unrestricted

#List all missing updates
Write-Output "Creating Microsoft.Update.Session COM object" 
$session1 = New-Object -ComObject Microsoft.Update.Session -ErrorAction silentlycontinue

Write-Output "Creating Update searcher" 
$searcher = $session1.CreateUpdateSearcher()

Write-Output "Searching for missing updates..." 
$result = $searcher.Search("IsInstalled=0")

#Updates are waiting to be installed 
$updates = $result.Updates;

Write-Output "Found $($updates.Count) updates!" 

$updates | Format-Table Title, AutoSelectOnWebSites, IsDownloaded, IsHiden, IsInstalled, IsMandatory, IsPresent, AutoSelection, AutoDownload -AutoSize

pause

示例输出:

Creating Microsoft.Update.Session COM object
Creating Update searcher
Searching for missing updates...
Found 4 updates!

Title                                                                                                               AutoSelectOnWebSites IsDownloaded IsHiden IsInstalled IsMandatory IsPrese
                                                                                                                                                                                           nt
-----                                                                                                               -------------------- ------------ ------- ----------- ----------- -------
Intel - Other hardware - Intel(R) Xeon(R) E3 - 1200/1500 v5/6th Gen Intel(R) Core(TM) PCIe Controller (x16) - 1901                 False        False               False       False   False
Intel - Other hardware - Intel(R) Xeon(R) E3 - 1200/1500 v5/6th Gen Intel(R) Core(TM) Gaussian Mixture Model - 1911                False        False               False       False   False
Microsoft Silverlight (KB4481252)                                                                                                  False        False               False       False   False
SQL Server 2019 RTM Cumulative Update (CU) 4 KB4548597                                                                             False        False               False       False   False


Press Enter to continue...: