win7 webdav workarounds

This commit is contained in:
ed 2022-10-18 20:52:12 +02:00
parent fe57321853
commit f0e98d6e0d
4 changed files with 19 additions and 0 deletions

View file

@ -723,6 +723,7 @@ known issues:
* winxp cannot show unicode characters outside of *some range*
* latin-1 is fine, hiragana is not (not even as shift-jis on japanese xp)
* win7 cannot access servers which require authentication unless you use https or [enable basic authentication](./contrib/webdav-basicauth.reg) for http
* win7 has a bug where it doesn't actually send the password to the server, so please type your password into the username field
## file indexing

View file

@ -32,6 +32,9 @@ however if your copyparty is behind a reverse-proxy, you may want to use [`share
### [`webdav-basicauth.reg`](webdav-basicauth.reg)
* enables webdav basic-auth over plaintext http
### [`webdav-unlimit.bat`](webdav-unlimit.bat)
* removes the 47.6 MiB filesize limit when downloading from webdav
### [`cfssl.sh`](cfssl.sh)
* creates CA and server certificates using cfssl
* give a 3rd argument to install it to your copyparty config

Binary file not shown.

View file

@ -0,0 +1,15 @@
@echo off
rem removes the 47.6 MiB filesize limit when downloading from webdav
at > nul
if %errorlevel% neq 0 (
echo you must run this as admin
pause
exit /b 1
)
reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\WebClient\Parameters /v FileSizeLimitInBytes /t REG_DWORD /d 0xffffffff /f
reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters /v FsCtlRequestTimeoutInSec /t REG_DWORD /d 0xffffffff /f
net stop WEBCLIENT
net start WEBCLIENT
pause