If the
Get-WindowsPackage
command for
SSU (Servicing Stack Update) comes back with no results, it typically means there isn’t a recognizable SSU package installed—or at least, it’s not visible in the package manager. This confirms there’s likely a problem with the servicing stack on your server, which could directly tie in with the failures for
KB5046616 or any other cumulative updates.
Here’s the plan to resolve this:
Step 1: Install the Latest Servicing Stack Update (SSU) for Server 2022
The servicing stack manages the installation of Windows updates and cumulative packages like
KB5046616, so fixing it is crucial.
- Locate the Latest SSU:
- Visit the official Microsoft Page for https://support.microsoft.com/en-us/topic/servicing-stack-updates-2a01c85f-04b4-480c-8bff-17d1a93cc7de.
- Look for Windows Server 2022 (21H2). As of your 20348.2762 build, the latest SSU should be included in KB5031364 (October 2023).
- Direct Download Link for SSU (if needed via manual archive): https://www.catalog.update.microsoft.com/.
- Download and Manually Install:
- Download the Standalone SSU Package matching your system architecture (x64).
- Double-click the downloaded
.msu
file and follow the installation steps.
- Verify the SSU Installation:
- After resetting the servicing stack, run the following to confirm:
Code:
bash dism /online /get-packages
- You should see an SSU package (e.g.,
Package Identity: SSU 20348.xxx
).
Step 2: Retry KB5046616 After Installing SSU
Once the servicing stack is properly updated, proceed to install KB5046616 again:
- Via Manual Installer:
- Via DISM Command:
Code:
bash dism /online /add-package /packagepath:.msu
Restart the server after installation to apply the changes.
Step 3: Recheck Compatibility if SSU Fails
If the standalone SSU
refuses to install, this may indicate servicing stack corruption deeper than expected. As a workaround:
- Run DISM to Repair the Component Store:
Code:
bash dism /online /cleanup-image /restorehealth
Retry the SSU installation after repairing the servicing stack.
- Perform an Offline Update Install:
- Download and mount the Server 2022 ISO you used for installation.
- Use DISM with the
/source
option to repair the system using files from the ISO:
Code:
bash dism /online /restorehealth /source:WIM:\Sources\install.wim:1 /limitaccess
Final Check: In-Place Repair (Last Resort)
If the SSU or servicing stack refuses updates consistently, an
in-place repair upgrade might be necessary:
- Use a Windows Server 2022 ISO matching your current version (20348.x).
- Run the installer and choose “Upgrade” while keeping files and settings.
Let me know if the SSU package installs successfully or if you hit any blockers. Once the servicing stack is in place,
KB5046616 should finally cooperate!