Desktop Client

WebDAV - Windows

Securely connect to Scramble Cloud via WebDAV – access, manage, and sync encrypted files using Explorer, Finder, Linux, or advanced tools like Rclone.

WebDAV (Web-based Distributed Authoring and Versioning) is a standardized protocol that enables remote file management over the internet. Scramble Cloud provides full WebDAV support through both the integrated desktop client and third-party tools like Rclone.

⚠️ Note: WebDAV can only be used with a Premium account. If you have a Freemium account, please use your browser for Scramble or upgrade your account to a monthly or lifetime subscription.

1. WebDAV Configuration in the Scramble Desktop Client

Within the Scramble Desktop Client, the following WebDAV settings are available:

  • HTTP Protocol — Select the protocol to use: HTTP or HTTPS.
  • Hostname — The address of the WebDAV server (e.g. 127.0.0.1).
  • Port — The port on which the WebDAV service is accessible (e.g., 1900).
  • Authentication Mode — Choose between:
    • basic – Sends username and password in plaintext
    • digest – Uses hashed credentials for increased security
  • Username / Password — Enter the login credentials used for authentication.
  • Smart Cache — Enables local caching of files to enhance performance.
  • Activated — Enables the WebDAV service for the client.

Scramble Desktop WebDAV settings

2. Connecting WebDAV in Windows File Explorer

In order to use WebDAV natively in Windows Explorer, certain system settings may need to be adjusted so that you can connect directly via File Explorer.

Step 1: Registry Configuration

Note: Required if Authentication Mode basic instead of digest is used.

Navigate to the following registry path:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters

Press Win + R → enter regedit

Set the following values — if they do not already exist, create them:

KeyTypeValueDescription
BasicAuthLevelDWORD (32)2Allow Basic Auth over HTTP
UseBasicAuthDWORD (32)1Explicitly enables Basic Auth

⚠️ A system restart is required for the changes to take effect.

Step 2: Restart the WebClient Service

  1. Press Win + R → enter services.msc
  2. Locate WebClient service: Right-click → Restart
  3. Set Startup type to Automatic

Step 3: Map WebDAV as a Network Drive

  1. Open Windows Explorer → right-click on This PC → Map Network Drive
  2. Enter the address, for example: http://127.0.0.1:1900/
  3. Enter credentials when prompted
  4. The drive will appear in Explorer as a network location

You can create a batch file that does this automatically for you. For example:

@echo off
set DRIVE=Z: "This is the letter of the network drive. Customize as desired."
set URL=http://127.0.0.1:1900/
set USER=admin "Your choosed Username"
set PASS=admin "Your choosed Password"
::
net use %DRIVE% /delete /yes >nul 2>&1
::
net use %DRIVE% %URL% /user:%USER% %PASS% /persistent:yes
exit

Step 4: Resolving WebDAV File Size Limit in Windows Explorer

When using WebDAV through the native Windows File Explorer, you may encounter the following error when downloading larger files:

Error 0x800700DF: The file size exceeds the limit allowed and cannot be saved

This limitation is due to a default restriction in the Windows WebClient service, which caps file transfers at 50 MB. To allow larger file downloads (e.g., up to 5 GB), you need to manually adjust the Windows Registry.

  1. Navigate to the WebClient Parameters: Press Win + R → enter regedit
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters
  1. Modify or Create FileSizeLimitInBytes
    • If it doesn’t exist: Right-click → New → DWORD (32-bit) Value
    • Name it: FileSizeLimitInBytes
    • Double-click the key
    • Set the base to Decimal
    • Enter the following value: 5368709120

(5 × 1024 × 1024 × 1024 = 5,368,709,120 bytes)

⚠️ A system restart is required for the changes to take effect.