To fix the error code 0x80070035, which indicates that the network path was not found, you can follow these steps:
- Check Network Connection: Ensure that both computers are connected to the same network and can communicate with each other.
- Verify Printer Sharing Settings: Make sure that printer sharing is enabled on the computer that has the printer connected. You can do this by going to the printer properties and ensuring that sharing is turned on.
- Use the Correct Path: When trying to connect to the printer, ensure that you are using the correct network path. It should be in the format
\ComputerName\PrinterName. - Check Firewall Settings: Sometimes, firewall settings can block network access. Ensure that the firewall on both computers allows file and printer sharing.
- DNS and Network Configuration: If the issue persists, you may need to check the DNS settings and ensure that both computers can resolve each other's names. You can use the
pingcommand to test connectivity. - Registry Fix: If you are using a CNAME record, you might need to add specific registry entries. Use the following commands in the command prompt:
Note: Replace "aliasname" with the appropriate name for your setup.reg add hklm\system\currentcontrolset\control\print /v DnsOnWire /t REG_DWORD /d 1 reg add hklm\system\currentcontrolset\services\lanmanserver\parameters /v DisableStrictNameChecking /t REG_DWORD /d 1 reg add hklm\system\currentcontrolset\services\lanmanserver\parameters /v OptionalNames /t REG_SZ /d "aliasname"
By following these steps, you should be able to resolve the error code 0x80070035 and successfully share the printers between your computers.