Eu copiei \ colado e compilado de posts da internet o novo arquivo em lote:
@echo off
for /f "tokens=*" %%i in ('ipconfig ^| find "192.168.122.1"') do set VAR=%%i
if %VAR:~33% EQU 192.168.122.1 (
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 1 /f
echo Proxy Enabled
) else (reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 0 /f
echo Proxy Disabled)
O arquivo em lote está funcionando bem. Mas precisa de configurações de proxy aberto (por exemplo, ie) para aplicar as alterações. Como aplicá-lo a partir do cmd sem abrir as configurações ???
Tags windows proxy batch-file cmd.exe