These Steps will setup a static IP address with DHCP as a default.
You can not do it from GUI
Open command prompt as Administrator
Find out the interface name:
netsh interface ipv4 show interface
Enable dhcpstaticipcoexistence:
netsh interface ipv4 set interface interface="interface name" dhcpstaticipcoexistence=enabled
Add a static ip address to your interface
netsh interface ipv4 add address "interface name" 192.168.x.xxx 255.255.255.0
Use command 'ipconfig /all' to verify the static ip address is added.
Ref: https://superuser.com/questions/679134/add-a-static-ip-alias-to-a-dhcp-interface-on-windows-8-and-above/1250941#1250941
No comments:
Post a Comment