potatoqualitee / kbupdate

🛡 KB Viewer, Saver, Installer and Uninstaller
MIT License
338 stars 50 forks source link

Search the updates for Windows Server 2012 but returns Windows Server 2012 and 2012 R2 #140

Closed legionliu closed 2 years ago

legionliu commented 2 years ago

Get-KbUpdate will return both Windows 2012 and 2012 R2 updates when trying to search for Windows 2012. I have updated the script locally to fix the issue by searching the update with exactly wanted OS. For your reference: Add '`"' for $OperatingSystem to Get-KbUpdate.ps1 line 232:

$url = "https://www.catalog.update.microsoft.com/Search.aspx?q=$kb+`"$OperatingSystem`"" image

potatoqualitee commented 2 years ago

So I got this to work for Database but I'm not so sure the quotes work for the web

image