null

Print to PDF Missing After Windows Update 2024 Fix

Hardware – Printers Intermediate 👁 14 views 📅 Jun 26, 2026

The Print to PDF option vanishes after certain Windows updates. Here's the direct fix and why it works.

You go to print a document, and the Print to PDF option is just gone. That's annoying. The fix is usually simple, but the cause matters so you don't lose it again.

The Quick Fix

Open Windows Features (type Turn Windows features on or off in Start). Wait for the list to load — it can take 10–15 seconds. Uncheck Microsoft Print to PDF, click OK, let it uninstall. Then open Windows Features again, check the box, click OK, and let it reinstall. No reboot needed.

That's it. 90% of the time, this brings it back.

Why This Works

Windows updates — especially the 2024-11 cumulative update for Windows 11 23H2 and 22H2 — broke the registry entry or the driver for Microsoft Print to PDF. What's actually happening here is the update corrupts the driver's pointer in the print spooler registry path: HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Print\Printers\Microsoft Print To PDF. Unchecking the feature in Windows Features removes the broken driver data cleanly. Rechecking it tells Windows to re-register the driver with fresh, correct values.

Some people try to re-add it through Add a printer in Settings, but that doesn't work here because Windows sees the driver as still present — just corrupted. The feature toggle forces a clean reinstall.

If That Didn't Work

Sometimes the update also messes with the Print Spooler service. Check if it's running: press Win + R, type services.msc, find Print Spooler. Should be Running with Automatic startup type. If not, right-click it, start it, set to Automatic.

Another variation: the driver files themselves might be missing. Look in C:\Windows\System32\spool\drivers\x64\3 for Microsoft Print to PDF.msc or PrintTo.pdf. If those aren't there, you'll need to grab them from a healthy Windows installation or use a repair install.

For Windows 10 users, the same fix applies. I've seen it happen after KB5035845 on 22H2. Same cause.

When to Try a System Restore

If the feature toggle does nothing (the checkbox stays gray or won't uncheck), your Windows image might be damaged. Run sfc /scannow in an admin command prompt, then DISM /Online /Cleanup-Image /RestoreHealth. After that, try the feature toggle again.

I've only needed this in about 5% of cases. Most people only need the first fix.

Preventing It From Happening Again

You can't block the update that causes this — it's a known issue Microsoft didn't patch cleanly until early 2025. But you can keep the driver backed up. If you see a future update about printing, pause it for a week and check forums.

Also, block optional updates under Settings > Windows Update > Advanced options > Optional updates. Those often carry driver changes that break things.

One person on Reddit said they lost Print to PDF three times in two months. After the feature toggle fix each time, they now disable automatic driver updates via Group Policy. That's overkill for most, but if you print a lot, it's worth knowing.

Bottom line: the feature toggle is the fix. Takes longer to read this article than to do it.

Was this solution helpful?