What to do When You Cannot Find 'Microsoft Print to PDF' Option When Trying to Print to PDF
Published: Apr 10, 2026
Sometimes you’ll come across Windows 11 computers that do not have the very handy “Microsoft Print to PDF” option in the list of printers to select. This option is very handy to save files as PDF and to split big PPDF by individual pages. Here are the steps you could try to get that option back and working.12
- Go to the search button on Windows, search for “Windows Features” and check under “Turn Windows on or off” box if “Microsoft Print to PDF” is turned off. If turned off, turn it on, and you’re good to go. If it’s turned on and still you do not see “Microsoft Print to PDF option, proceed below.
- Open Command Prompt as an admministrator and run the following:
net stop wuauserv
net stop bits
net stop cryptsvc
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 catroot2.old
If you get “Access denied when running the two last commands, run the top three commands again.
net start wuauserv
net start bits
net start cryptsvc
DISM /Online /Cleanup-Image /RestoreHealth
sfc /scannow
The above two commands WILL take time. Prepare to wait.
- Reboot, open Command Prompt as admin and:
DISM /Online /Enable-Feature /FeatureName:"Printing-PrintToPDFServices-Features" /All
- Check if “Microsoft Print to PDF” is now available when using a PDF Reader (say Foxit).
🍟
-
Tested on Windows 11 Home Premium Edition (Build 26200) (64-bit) (Release ID 25H2), BIOS Version F.29, Released 05/07/2024, HP Laptop 17-cp0xxx ↩︎
-
Sourced from: https://techcommunity.microsoft.com/discussions/windows11/microsoft-print-to-pdf-missing/4416986 ↩︎