w10install/scripts/disable-systemproxy.cmd
Michael H.G. Schmidt 13428fdafb Proxy issues. #7
2021-08-05 15:04:48 +02:00

15 lines
410 B
Batchfile

@echo off
echo ####### %0 #######
echo disabling automatic proxy search ...
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" ^
/v AutoDetect /t REG_DWORD /d 0 /f
echo disabling system proxy use ...
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" ^
/v ProxyEnable /t REG_DWORD /d 0 /f
echo ####### %0 #######