سكربت لوضع عنوانIPومنفذ البروكسي في ويندوز Script set the IP address and port of theproxy in windows
Script to set the IP address and port of the proxy in Windows
=======================================
@echo off
set /p ip=Enter proxy IP address:
set /p port=Enter proxy port:
reg add “HKCUSoftwareMicrosoftWindowsCurrentVersionInternet Settings” /v ProxyServer /t REG_SZ /d %ip%:%port% /f
reg add “HKCUSoftwareMicrosoftWindowsCurrentVersionInternet Settings” /v ProxyEnable /t REG_DWORD /d 1 /f
echo Proxy settings updated.
pause
ip address