A family of Microsoft on-premises document management and storage systems.
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.