Proxy issues. #7

This commit is contained in:
Michael H.G. Schmidt 2021-08-05 15:04:48 +02:00
parent 4f2dafb79f
commit 13428fdafb
3 changed files with 18 additions and 0 deletions

View File

@ -183,6 +183,9 @@ echo.
call disable-autologon.cmd
echo.
call disable-systemproxy.cmd
echo.
powershell -command .\disable-soundscheme.ps1
echo.

View File

@ -72,4 +72,5 @@ lockPref("signon.usage.hasEntry", false);
defaultPref("toolkit.telemetry.pioneer-new-studies-available", false);
defaultPref("toolkit.telemetry.reportingpolicy.firstRun", false);
defaultPref("trailhead.firstrun.didSeeAboutWelcome", true);
defaultPref("network.proxy.type", 0);

View File

@ -0,0 +1,14 @@
@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 #######