Files
membank/fnhelp/file-service/webdav.md

30 lines
1.5 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Windows 通过 WebDAV 挂载飞牛注意事项
## 一、开启 HTTP 支持
Windows 默认不支持通过 HTTP 协议连接 WebDAV 服务,需要通过修改注册表来开启。具体步骤如下:
1. 使用快捷键 Win + R 打开运行窗口,输入 `regedit` 打开注册表编辑器。
2. 在地址栏中粘贴路径:`计算机\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters`,然后按回车键。
3. 找到 `BasicAuthLevel` 项,双击打开修改窗口,将数值数据改为 `2`,然后点击确定。
4. 再次使用 Win + R 打开运行窗口,输入 `services.msc` 打开服务窗口。
5. 找到 `WebClient` 服务,右键选择"重新启动"。
## 二、解决文件大小超出限制的问题
Windows WebDAV 默认传输文件大小限制为 50MB可以通过修改注册表来调整这一限制。具体操作如下
1. 使用 Win + R 打开运行窗口,输入 `regedit` 打开注册表编辑器。
2. 在地址栏中粘贴路径:`计算机\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters`
3. 找到 `FileSizeLimitInBytes` 项,双击打开修改窗口,将默认值 `2faf080`50MB修改为 `ffffffff`4GB
4. 再次使用 Win + R 打开运行窗口,输入 `services.msc` 打开服务窗口。
5. 找到 `WebClient` 服务,右键选择"重新启动"。
## 其他说明
- 文章还提到了在 Windows 上挂载 WebDAV 的其他方式,例如使用第三方文件管理客户端(如 RaiDrive、WinSCP、FileZilla
---
*来源:飞牛 fnOS 帮助中心*