fix error code 0x80070035

STEVEN KASTE 0 Reputation points
2025-12-15T22:11:23.93+00:00

i have 2 new computers for work in my parts department that need to be shared to make the printers work and keep getting an error code 0x80070035

Microsoft 365 and Office | SharePoint Server | For business
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Q&A Assist
    2025-12-15T22:11:37.4966667+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    To fix the error code 0x80070035, which indicates that the network path was not found, you can follow these steps:

    1. Check Network Connection: Ensure that both computers are connected to the same network and can communicate with each other.
    2. 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.
    3. 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.
    4. Check Firewall Settings: Sometimes, firewall settings can block network access. Ensure that the firewall on both computers allows file and printer sharing.
    5. 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 ping command to test connectivity.
    6. 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:
         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"
      
      Note: Replace "aliasname" with the appropriate name for your setup.

    By following these steps, you should be able to resolve the error code 0x80070035 and successfully share the printers between your computers.

    0 comments No comments

  2. Teddie-D 9,590 Reputation points Microsoft External Staff Moderator
    2025-12-16T00:52:12.7833333+00:00

    Hi @STEVEN KASTE 

    Thank you for posting your question in the Microsoft Q&A forum. 

    It looks like you’re encountering network error 0x80070035, which typically indicates that the network path can’t be found. After looking into this issue, I found that many others have run into the same problem. Below are several solutions that have helped users resolve it: 

    1.Enable SMB 1.0/CIFS File sharing support 

    -Open Control Panel > Programs > Turn Windows features on or off. 

    -Find and check SMB 1.0/CIFS file sharing support, then click OK and restart your computer. 

    2.Firewalls or antivirus tools can sometimes block network access. Try turning them off temporarily to see if the issue disappears. 
    Important: This reduces your protection, so re‑enable everything immediately after testing. 

    3.Use a local account to access shared folders: 

    Make sure you are using the correct username and password to access the shared folder. 

    If the shared folder is on another computer, try to access it using the local account on that computer. 

    4.Modify the registry settings: 

    Open a command prompt (run as administrator), type the following command and press Enter: 

    reg add HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters /f /v RequireSecuritySignature /t REG_DWORD /d 0 
    reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\LanmanWorkstation /f /v AllowInsecureGuestAuth /t REG_DWORD /d 1 
    reg add HKLM\SOFTWARE\WOW6432Node\Policies\Microsoft\Windows\LanmanWorkstation /f /v AllowInsecureGuestAuth /t REG_DWORD /d 1
    

    Restart afterward. 

    Important: Editing the registry can cause system issues if done incorrectly. Back up the registry first. Microsoft’s guide is here: https://support.microsoft.com/en-us/topic/how-to-back-up-and-restore-the-registry-in-windows-855140…  

    5.Use PowerShell commands: 

    Several users reported that this method resolved the issue for them. Run PowerShell as Administrator and enter: 

    Set-SmbClientConfiguration -EnableInsecureGuestLogons $true -Force   
    Set-SmbClientConfiguration -RequireSecuritySignature $false -Force   
    Set-SmbServerConfiguration -RequireSecuritySignature $false -Force  
    

    Restart your PC and test again. 

    I hope this information is helpful. 


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".   

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread. 


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.