mirror of
https://github.com/rclone/rclone.git
synced 2024-11-26 10:25:03 +01:00
webdav: Document Mapping/Accessing WebDAV shares on windows.
Fixes #6596 Co-authored-by: Piyush <piyushgarg80>
This commit is contained in:
parent
c6c67a29eb
commit
98fa93f6d1
@ -79,6 +79,30 @@ supported hash on the backend or you can use a named hash such as
|
|||||||
"MD5" or "SHA-1". Use the [hashsum](/commands/rclone_hashsum/) command
|
"MD5" or "SHA-1". Use the [hashsum](/commands/rclone_hashsum/) command
|
||||||
to see the full list.
|
to see the full list.
|
||||||
|
|
||||||
|
### Access WebDAV on Windows
|
||||||
|
WebDAV shared folder can be mapped as a drive on Windows, however the default settings prevent it.
|
||||||
|
Windows will fail to connect to the server using insecure Basic authentication.
|
||||||
|
It will not even display any login dialog. Windows requires SSL / HTTPS connection to be used with Basic.
|
||||||
|
If you try to connect via Add Network Location Wizard you will get the following error:
|
||||||
|
"The folder you entered does not appear to be valid. Please choose another".
|
||||||
|
However, you still can connect if you set the following registry key on a client machine:
|
||||||
|
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters\BasicAuthLevel to 2.
|
||||||
|
The BasicAuthLevel can be set to the following values:
|
||||||
|
0 - Basic authentication disabled
|
||||||
|
1 - Basic authentication enabled for SSL connections only
|
||||||
|
2 - Basic authentication enabled for SSL connections and for non-SSL connections
|
||||||
|
If required, increase the FileSizeLimitInBytes to a higher value.
|
||||||
|
Navigate to the Services interface, then restart the WebClient service.
|
||||||
|
|
||||||
|
### Access Office applications on WebDAV
|
||||||
|
Navigate to following registry HKEY_CURRENT_USER\Software\Microsoft\Office\[14.0/15.0/16.0]\Common\Internet
|
||||||
|
Create a new DWORD BasicAuthLevel with value 2.
|
||||||
|
0 - Basic authentication disabled
|
||||||
|
1 - Basic authentication enabled for SSL connections only
|
||||||
|
2 - Basic authentication enabled for SSL and for non-SSL connections
|
||||||
|
|
||||||
|
https://learn.microsoft.com/en-us/office/troubleshoot/powerpoint/office-opens-blank-from-sharepoint
|
||||||
|
|
||||||
` + libhttp.Help + libhttp.TemplateHelp + libhttp.AuthHelp + vfs.Help + proxy.Help,
|
` + libhttp.Help + libhttp.TemplateHelp + libhttp.AuthHelp + vfs.Help + proxy.Help,
|
||||||
Annotations: map[string]string{
|
Annotations: map[string]string{
|
||||||
"versionIntroduced": "v1.39",
|
"versionIntroduced": "v1.39",
|
||||||
|
Loading…
Reference in New Issue
Block a user