Kod Adı: Windows IP Değiştirme Kod Yüklenecek Konum: c:\\ipaddress.bat Çalıştırılıcak Program: cmd.exe Çalıştırılıcak Komut: /c c:\\ipaddress.bat Kod Türü: IP Adresi Kod: @echo off SET iplist={iplist} SET iplist=%iplist:-= % FOR /f "skip=2 tokens=3*" %%a in ('netsh int show int') do ( netsh interface ip set address "%%b" dhcp FOR %%i in (%iplist%) DO ( FOR /f "tokens=1,2,3 delims=x" %%x in ("%%i") do ( if not defined foo ( set foo=%%b netsh int ip set address "%%b" static %%x %%z %%y ) else ( netsh int ip add address "%%b" %%x %%z %%y SkipAsSource=True ) ) ) ) del C:\ipaddress.bat