Proxy issues. #7
This commit is contained in:
parent
4f2dafb79f
commit
13428fdafb
@ -183,6 +183,9 @@ echo.
|
||||
call disable-autologon.cmd
|
||||
echo.
|
||||
|
||||
call disable-systemproxy.cmd
|
||||
echo.
|
||||
|
||||
powershell -command .\disable-soundscheme.ps1
|
||||
echo.
|
||||
|
||||
|
@ -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);
|
||||
|
||||
|
14
scripts/disable-systemproxy.cmd
Normal file
14
scripts/disable-systemproxy.cmd
Normal 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 #######
|
||||
|
Loading…
Reference in New Issue
Block a user