Printer Scan to PDF crashes – real fixes that work
Scan to PDF crashes on Windows – usually bad drivers or old WIA service. Here's what actually causes it and how to fix it.
1. Old or wrong printer driver – the most common crash cause
What's actually happening here is that the printer driver you installed doesn't match your Windows version or is outdated. When you hit "Scan to PDF", Windows calls the driver's WIA (Windows Image Acquisition) component. If that component is buggy or not fully compatible with your OS, the scan software crashes – often without any error message.
I've seen this on HP Envy 6000 series with drivers from 2020 on Windows 11 22H2, and on Canon Pixma MG3620 with the default Windows driver instead of Canon's own.
Real fix – not the generic "update driver" advice:
- Go to
Settings > Bluetooth & devices > Printers & scanners. Find your printer, click it, then clickPrinter properties. - In the driver tab, check the driver version and date. If it says "Microsoft" as provider, that's the problem – you need the manufacturer's driver.
- Uninstall the printer completely. Then download the latest full driver package from the printer maker's site – not the basic one. For HP, get the "Full Feature Software" package, not just the driver bundle. For Canon, get the "MP Drivers" or "ScanGear" package.
- Install it, restart your PC, then try scanning again.
Why step 3 matters: The basic driver only handles printing. The full package includes the WIA scanner driver and the scan utility. Without it, Windows uses its own generic WIA driver which crashes with many modern printers.
2. Windows Image Acquisition (WIA) service stuck or broken
WIA is the service that handles communication between your scan software and the scanner hardware. If it's stopped, disabled, or hung, the scan process just freezes. I've seen this most often on laptops that wake from sleep – WIA starts but doesn't initialize properly.
You'll know this is the issue if the scanner is detected but nothing happens when you start scanning, or the scan preview shows black for 30 seconds before crashing.
How to fix it:
- Press
Win + R, typeservices.msc, press Enter. - Find
Windows Image Acquisition (WIA)in the list. Double-click it. - If the service status says
Stopped, clickStart. If it'sRunning, clickStop, wait 10 seconds, then clickStartagain – this resets its state. - Set
Startup typetoAutomatic(not Automatic (Delayed Start)). Then click Apply and OK. - Restart your PC and try scanning again.
The reason step 3 works: When WIA gets into a stuck state after sleep, restarting the service clears whatever half-opened connection it was holding. Setting startup to Automatic instead of Delayed means WIA starts before any scan software tries to talk to it.
3. Corrupted scan profile or user data folder
Less common but I've seen it on HP and Epson scanners after a software update. The scan software stores your last used settings (resolution, file type, color mode) in a local user data folder. If that file gets corrupted – for example, from an incomplete update or antivirus blocking file writes – the software crashes when trying to load it.
You'll see the crash happen right after you select "Scan to PDF" but before the actual scanning starts. Or the software opens but instantly freezes.
Fix it by clearing the profile:
- Close the scan software completely.
- Press
Win + R, type%appdata%, press Enter. This opens your AppData Roaming folder. - Look for a folder named after your printer brand – like
HP,Canon,Brother, orEPSON. Inside there's usually aScanorScannersubfolder. - Rename that folder to something like
Scan_old(don't delete it, you might need it). - Restart the scan software. It will create a new profile with default settings. Try scanning now.
I've had this work on an HP DeskJet 3755 where the scan software crashed every time on Windows 11 after a driver update. Renaming the folder forced it to rebuild the settings file cleanly.
If that doesn't help, also check %localappdata% and look for similar folders there – some apps store data in Local instead of Roaming.
Quick-reference summary table
| Cause | Symptom | Fix |
|---|---|---|
| Wrong or old driver | Crash when selecting Scan to PDF | Uninstall printer, install full driver package from maker's site |
| WIA service stuck | Scan freezes or black preview | Restart WIA service in services.msc, set to Automatic |
| Corrupted scan profile | Crash right after opening software | Rename scan profile folder in %appdata% |
Try these in order. The driver fix solves about 70% of cases. The WIA restart fixes another 20%. The profile trick handles the rest.
Was this solution helpful?