Batch file script for Enable & disable the "use automatic Configuration Script"
- by Tijo Joy
My intention is to create a .bat file that toggles the check box of "use automatic Configuration Script" in Internet Settings.
The following is my script
@echo OFF
setlocal ENABLEEXTENSIONS
set KEY_NAME="HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings"
set VALUE_NAME=AutoConfigURL
FOR /F "usebackq skip=1 tokens=1-3" %%A IN…