I’m working on a Server 2022 21H2 virtual machine. I know there is an optional update waiting from running a PowerShell script. For example, this one-liner
(New-Object -ComObject Microsoft.Update.Session).CreateupdateSearcher().Search("IsHidden=0 and IsInstalled=0").Updates | Select-Object Title
shows that this update is pending:
SQL Server 2019 RTM Cumulative Update (CU) 25 KB5033688
A little more digging on KB5033688 shows that its BrowseOnly flag is True, i.e. optional.
However when I go to the Windows Update UI, I do not see the “View optional updates” hyperlink, so I can’t find and install that update.
The machine is managed by Windows Update for Business. There is a new policy Enable optional updates but it requires Windows 11 22H2, so doesn’t help here. I did try temporarily renaming the WindowsUpdate registry key, which should disable WUFB, but I still don’t see the optional update.
I don’t think it’s relevant, but the machine still has the BitLocker fix from January pending (KB5034439). It keeps trying and failing to install that.
I know I could download and install this manually, but I’d like to get the optional updates working.
Is there some trick to make the optional update link appear on Server 2022?