Unable to save printer settings error 0X000006D9
Share a printer under Win7 and you will be prompted "Unable to save printer settings, operation cannot be completed (Error 0x000006d9)"
Believe that many friends have encountered, in fact, the reason is very simple, because the Win7 Firewall service is not open. Just open the Firewall service. (Note: Firewall service open, do not need to open the firewall in Control Panel)
Firewall Open Method:
method One: right click "Computer" → "Management" → "Service and application" → "service", find "Windows Firewall".
Double-click to set the Startup type to "Automatic" (delay startup or automatic, then click "Apply", then click "Start" on the service status, then set the shared printer.)
method Two:"start" → "Run" → input "cmd", enter
At the command prompt, enter
sc config mpssvc start= AUTO
sc config mpssvc start= AUTO
Enter
method Three: save the following command as "Open firewall. Bat", and then open the Firewall service and run it once with this file.
code is as follows |
copy code |
SC Config mpssvc start= AUTO
net start mpssvc
|