SOLVED for EPSON V30 scanner
I tried many of the solutions that others have suggested. I'm not sure whether it was the combination of steps that ultimately worked, or just the final one (step 4), which seems the most likely. Also, please note that Windows Scan initially didn’t detect my EPSON V30 scanner, so that particular solution wasn’t an option for me. Here’s what I did:
1- Reinstalled EPSON Scan Utility v3.50 (dated 11/15/09, file name: epson13534.exe) which Epson lists as compatible with Windows 11.
2- Installed the Microsoft Visual C++ Redistributable located here: https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170#visual-studio-2015-2017-2019-and-2022
3- Setup EPSON scan to Windows 7 compatibility mode. Right-click on the Epson Scan icon on the desktop, then click Properties. Go to the Compatibility tab. Click the check box next to Run this program in compatibility mode for Windows 7. Then click the OK button.
4- Restart Windows Image Acquisition (WIA), On your keyboard, press the Windows logo key and R key at the same time. Type services.msc and click Enter to open the Services window. Right-click Windows Image Acquisition (WIA), then click Restart (three options above properties). For me, this consistently allows EPSON Scan to launch without issues.
If this solution works for you, you can create a simple batch file to restart the Windows Image Acquisition (WIA) service. It only takes two lines of code—just copy them into Notepad and save the file with a .bat extension. I named mine WIA_Restart.bat.
Here’s the code:
net stop stisvc
net start stisvc
Note: You’ll need to run the batch file as an administrator. It’s definitely faster than manually opening the Services window and locating WIA to restart it.