Настройка сетевого интерфейса.
Где Local — это имя самого интерфейса.
ADVERTISEMENT
На DHCP:
@echo off netsh interface ip set address name="Local" source=dhcp netsh interface ip set dns name="Local" dhcp exit
На статический адрес:
@echo off netsh interface ip set address name="Local" static 192.168.0.2 255.255.255.0 192.168.0.1 0 netsh interface ip set dns name="Local" static 192.168.0.1 primary netsh interface ip add dns name="Local" 8.8.8.8 exit