Thanks Jason,I try your steps one by one ,but no success,finally,try to manually install the printer then choice microsoft,then choice update from Windows,it needs more time to wait,then you will see Microsoft Print to PDF,install it ,success,hope it can help someone in the future.
0x800f0922,Microsoft Print to PDF Missing,Win11 24H2
1,run optionalfeatures.exe,Failed
2,Manually add a printer driver,Failed
3,run Command ,Failed
sfc /scannow
-
dism /online /cleanup-image /restorehealth
Disable-WindowsOptionalFeature -Online -FeatureName Printing-PrintToPDFServices-Features -
Enable-WindowsOptionalFeature -Online -FeatureName Printing-PrintToPDFServices-Features4,so any other ways to resolve this issue?
Windows for business | Windows Client for IT Pros | User experience | Print, fax, and scan
2 additional answers
Sort by: Most helpful
-
Senthil kumar 1,900 Reputation points
2026-07-15T07:35:44.94+00:00 Hi @BW
Win + R→ typeappwiz.cpl→ Entergo to Turn Windows features on or off. if tick un-tick click ok then restart your pc. then come this screen tick and try.
Thanks.
-
Jason Nguyen Tran 24,545 Reputation points Independent Advisor
2026-07-14T09:32:01.06+00:00 Hi BW,
The 0x800f0922 error when enabling Microsoft Print to PDF in Windows 11 24H2 often points to a corrupted feature store or a blocked update component. Since optionalfeatures.exe, manual driver addition, and DISM repairs didn’t resolve it, the next step is to dig a bit deeper.
One option is to remove and re‑add the Print to PDF feature using PowerShell with elevated rights:
Disable-WindowsOptionalFeature -Online -FeatureName Printing-PrintToPDFServices-Features -NoRestartfollowed byEnable-WindowsOptionalFeature -Online -FeatureName Printing-PrintToPDFServices-Features -All -NoRestart. If that still fails, check the CBS logs (C:\Windows\Logs\CBS\CBS.log) for specific errors tied to the feature installation. These logs often reveal whether the issue is with the component store or a dependency.Another useful workaround is to run
DISM /Online /Cleanup-Image /StartComponentCleanupbefore re‑enabling the feature, which can clear out broken references. If the component store itself is damaged, mounting the Windows 11 24H2 ISO and runningDISM /Online /Cleanup-Image /RestoreHealth /Source:wim:D:\sources\install.wim:1 /LimitAccesscan repair it using a clean source.Finally, if none of these steps succeed, you can manually install the “Microsoft Print to PDF” printer via
Add-PrinterDriverandAdd-Printerin PowerShell, pointing to the inbox driver files located underC:\Windows\System32\DriverStore\FileRepository.Give this a try and let me know how it goes. If you find this answer helpful, please hit “accept answer” so I know your issue has been addressed.
Jason.