Quick fix: Open Settings → System → Optional features → More Windows features → tick Microsoft Print to PDF. Click OK and wait for the installation. The “Print to PDF” virtual printer reappears in every app’s print dialog.
You go to print and the Microsoft Print to PDF option isn’t in the printer dropdown. Other Microsoft printers like XPS Document Writer may also be missing. Windows ships these as optional features, and a debloater script or feature update may have removed them. Restoring takes one trip through Optional Features.
Affects: Windows 11 (and Windows 10) when the optional feature was removed.
Fix time: ~5 minutes.
What causes this
Microsoft Print to PDF is a virtual printer driver bundled as an optional Windows feature. It can be toggled off and on via the Optional Features dialog (the modern replacement for “Turn Windows features on or off”). Removal happens deliberately (debloater scripts) or accidentally (Windows feature updates that prompt for cleanup). Restoring takes a single tick in Optional Features.
Method 1: Re-enable Microsoft Print to PDF via Optional Features
The standard restore.
- Open Settings → System → Optional features.
- Scroll to the bottom. Click More Windows features. The legacy “Windows Features” dialog opens.
- Scroll the list to find Microsoft Print to PDF.
- If it’s unticked: tick it.
- Click OK. Windows installs the feature; takes 1-3 minutes.
- Reboot if prompted.
- Open any app and try to print. Microsoft Print to PDF appears in the printer dropdown.
This is the right fix for the most common case.
Method 2: Reinstall via PowerShell when GUI doesn’t expose the option
Use when Optional Features doesn’t list Print to PDF, or when it’s ticked but still not in the printer list.
- Open Terminal (Admin).
- Disable then re-enable to force fresh installation:
Disable-WindowsOptionalFeature -Online -FeatureName Printing-PrintToPDFServices-Features -Remove Enable-WindowsOptionalFeature -Online -FeatureName Printing-PrintToPDFServices-Features -AllThe
-Removeflag removes the staged binaries; subsequent enable downloads fresh ones. - Wait for the operations to complete.
- Verify:
Get-WindowsOptionalFeature -Online -FeatureName Printing-PrintToPDFServices-Features | Format-List FeatureName, StateState should be Enabled.
- Open Settings → Bluetooth & devices → Printers & scanners. Microsoft Print to PDF appears.
- Reboot.
The remove-then-reinstall is the right approach for stuck or partially-removed features.
Method 3: Manually add the Print to PDF printer via Settings
Use when the feature is enabled but the printer entry was deleted.
- Open Settings → Bluetooth & devices → Printers & scanners.
- Click Add device. Wait briefly.
- Click Add manually.
- Choose Add a local printer or network printer with manual settings.
- Click Use an existing port. Select FILE: (Print to File).
- Click Next.
- From the manufacturer list, choose Microsoft. From the printer model list, choose Microsoft Print to PDF.
- Click Next and follow the wizard. Name the printer (default name is fine).
- Finish. The printer is now in the printer list.
This re-adds the printer entry without the Optional Features round-trip.
How to verify the fix worked
- Open Word, Edge, or any app. Press
Ctrl + P. Microsoft Print to PDF appears in the printer dropdown. - Select it and click Print. A Save As dialog appears. Save the PDF.
- Open the PDF in Edge or Acrobat Reader. The document is rendered as PDF.
- Run
Get-Printer | Where-Object Name -like "*PDF*"in PowerShell. Microsoft Print to PDF appears.
If none of these work
If Print to PDF remains missing despite Optional Features and PowerShell reinstall, three causes apply. Group Policy block: corporate-managed PCs may have policies that prevent the feature. Check gpresult /h C:\gpresult.html for related entries. Damaged WinSxS component store: feature installation needs the component store. Run DISM /Online /Cleanup-Image /RestoreHealth followed by sfc /scannow. Reboot. Retry Methods 1 and 2. Third-party PDF printer conflict: if Adobe Acrobat or other PDF software is installed, it may have replaced Microsoft Print to PDF. Uninstall those, retry Method 1. For users who specifically need a Microsoft PDF printer despite all fixes failing, Microsoft offers Microsoft Print to PDF as a re-downloadable component via the cab files in the Windows ISO — extract and install via DISM /Online /Add-Package.
Bottom line: Microsoft Print to PDF is a removable optional feature — tick the box in Optional Features → More Windows features, or reinstall via PowerShell, and the virtual printer is back in every print dialog.