Connect Windows Server 2012 to OwnCloud as a network drive via WebDAV
Background:
My OwnCloud is a VM appliance based on Ubuntu. I want to have a simple way to move files from my Windows Server to OwnCloud.Solution Approach:
OwnCloud support WebDAV. Windows support to map WebDAV as a network drive.Problem:
Windows Server need special adjustment on settings before it can connect the WebDAV network drive.References:
QNAP instruction on using WebDAVIIS.NET - Robert McMurray, Using WebDAV Redirector (with detail descriptions for parameter treaks)
Blog by PuliPuli
Detail
High Level Steps
- Install new feature Desktop Experience in Windows Server.
- Set the service "Web Client" to Automatic startup.
- Enable basic Authentication, and reboot: (Superuser.com and MS KB841215)
- set HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters ; DWORD value "BasicAuthLevel" to "2".
- Add the server to the list for forward authentication (KB941050)
- Remember to restart "WebClient" service after configuration.
- Use map drive like this (must use IP address:)
- net use z: http://192.168.x.x/owncloud/remote.php/webdav/ /user:yourname password
- You must ensure
- The https SSL certificate is trusted. Otherwise, add the certificate to your root trusted cert.
- The hostname of the SSL certificate matched the host name.
- Test your HTTPS connection via Internet Explorer. Ensure there is no error for IE to accept the SSL certificate
- Remember to restart "WebClient" service after configuration.
- map drive:
- net use z: https://f.q.d.n/owncloud/remote.php/webdav/ /user:yourname password
Comments