how to change your
IP from CMD
assume the connection name (that you find in the control panel) is local area connection and you want to set a static IP, type this in CMD
Code:
netsh interface ip set address "Local Area Connection" static 192.168.0.10 255.255.255.0 192.168.0.1 1
to set a dynamic address:
Code:
netsh interface ip set address "Local Area Connection" dhcp
also you can make batch files. lol this pwns!!