====== netsh ====== == Interface umbenennen == netsh interface set interface name="LAN-Verbindung" newname="Interface 1" == Konfiguration über DHCP beziehen == netsh interface ip set address "LAN-Verbindung" dhcp == Interface manuell konfigurieren == netsh interface ip set address name="LAN-Verbindung" static 192.168.1.2 255.255.255.0 192.168.1.1 1 netsh interface ip set dns name="LAN-Verbindung" static 192.168.1.1 == Konfiguration anzeigen == netsh interface ip show config "LAN-Verbindung"