Skip to content

Instantly share code, notes, and snippets.

@tksst
Last active February 20, 2022 01:56
Show Gist options
  • Save tksst/72806455ca6102da3027601ce1509d7b to your computer and use it in GitHub Desktop.
Save tksst/72806455ca6102da3027601ce1509d7b to your computer and use it in GitHub Desktop.
PACファイルを切り替える
@echo off
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections" /v "DefaultConnectionSettings" /t REG_BINARY /d "4600000016" /f
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "AutoConfigURL" /t REG_SZ /d "http://YOUR_PAC_URL" /f
if errorlevel 1 (
echo error occured
pause
)
@echo off
reg delete "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "AutoConfigURL" /f
if errorlevel 1 (
echo error occured
pause
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment