windows - Batch File to disable internet options proxy server -
in windows, want disable proxy server setting in internet options using batch script. command can use this?
if unsure referring to, see
internet properties > connections > lan settings >proxy server
thank you
it's in registry, under [hkey_current_user\software\microsoft\windows\currentversion\internet settings]
you can either use reg
command in bat, or prepare couple of .reg
files, automate changes.
for example, disable proxy, try
reg add "hkcu\software\microsoft\windows\currentversion\internet settings" /v proxyenable /t reg_dword /d 0 /f
Comments
Post a Comment