Hello,
Thank you for posting in the Microsoft Community Forums.
System error 67 indicates that the network name cannot be found, which typically points to an issue with the URL format, network configuration, or WebDAV client settings. Here are some steps to troubleshoot and potentially resolve the problem:
- Check the URL Format:
- Ensure that the URL you are using is correct and accessible via a web browser. Use a complete URL like https://yourdomain.com/remote.php/dav/files/username/
.
- Avoid using triple slashes (///
) unless it's required by your server's configuration.
- Verify WebDAV Service:
- Confirm that the WebDAV service is running on your server and correctly configured to access the specified URL.
- Install WebDAV Redirector:
- Ensure that the WebDAV redirector service is installed and enabled on your Windows machine. You can install it via Windows Features:
1. Open Control Panel.
2. Go to "Programs" > "Turn Windows features on or off".
3. Check the box for "WebDAV Redirector".
4. Click OK and restart your computer if necessary.
- Network Discovery:
- Make sure that network discovery is enabled on your system:
1. Open the Control Panel.
2. Go to "Network and Sharing Center".
3. Click on "Change advanced sharing settings".
4. Ensure that "Turn on network discovery" is checked.
- Command Syntax:
- Double-check the syntax of your net use
command. Ensure there are no typos and correct placeholders:
net use X: https://yourdomain.com/remote.php/dav/files/username /user:yourusername yourpassword /persistent:no
- Windows Firewall and Antivirus:
- Temporarily disable Windows Firewall and any third-party antivirus or firewall software to rule out any interference. Remember to re-enable them after testing.
- Check Credential Manager:
- Ensure that your WebDAV credentials are stored correctly in the Windows Credential Manager:
1. Open Control Panel.
2. Go to "Credential Manager".
3. Add a new Windows credential with the WebDAV address, username, and password.
I hope the information above is helpful.
Best regards
Yanhong Liu