copyparty 1.19.17__py3-none-any.whl → 1.19.18__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,45 +0,0 @@
1
- @echo off
2
- rem removes the 47.6 MiB filesize limit when downloading from webdav
3
- rem + optionally allows/enables password-auth over plaintext http
4
- rem + optionally helps disable wpad, removing the 10sec latency
5
-
6
- net session >nul 2>&1
7
- if %errorlevel% neq 0 (
8
- echo sorry, you must run this as administrator
9
- pause
10
- exit /b
11
- )
12
-
13
- reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\WebClient\Parameters /v FileSizeLimitInBytes /t REG_DWORD /d 0xffffffff /f
14
- reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters /v FsCtlRequestTimeoutInSec /t REG_DWORD /d 0xffffffff /f
15
-
16
- echo(
17
- echo OK;
18
- echo allow webdav basic-auth over plaintext http?
19
- echo Y: login works, but the password will be visible in wireshark etc
20
- echo N: login will NOT work unless you use https and valid certificates
21
- choice
22
- if %errorlevel% equ 1 (
23
- reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\WebClient\Parameters /v BasicAuthLevel /t REG_DWORD /d 0x2 /f
24
- rem default is 1 (require tls)
25
- )
26
-
27
- echo(
28
- echo OK;
29
- echo do you want to disable wpad?
30
- echo can give a HUGE speed boost depending on network settings
31
- choice
32
- if %errorlevel% equ 1 (
33
- echo(
34
- echo i'm about to open the [Connections] tab in [Internet Properties] for you;
35
- echo please click [LAN settings] and disable [Automatically detect settings]
36
- echo(
37
- pause
38
- control inetcpl.cpl,,4
39
- )
40
-
41
- net stop webclient
42
- net start webclient
43
- echo(
44
- echo OK; all done
45
- pause