Below I specify the command to change IP from command prompt

netsh interface ip set address name="Local Area Connection" static 192.168.1.5 255.255.255.0 192.168.1.1 

But its gives message like

Invalid interface Local Area Connection specified.

Is anyone help to me to change IP address in my window system ?

link|improve this question

68% accept rate
Sorry but this question has nothing to do with stackoverflow. – karlphillip Feb 28 '11 at 15:47
feedback

1 Answer

the connection name needs to match what is currently in use; use ipconfig to see the apadters - when using wifi the connection is named differently.


You need to use the right connection name; if you do IPCONFIG you will get something like the following. You can see that my wired connection is called Local Area Connection and my wired connectino is Wireless Network Connection. This is the connection name that you need to pass to netsh

Windows IP Configuration


Wireless LAN adapter Wireless Network Connection 2:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . : 

Wireless LAN adapter Wireless Network Connection:

   Connection-specific DNS Suffix  . : SSID
   Link-local IPv6 Address . . . . . : fe80::0000:0000:0000:000000
   IPv4 Address. . . . . . . . . . . : 192.168.2.8
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Default Gateway . . . . . . . . . : 192.168.2.1

Ethernet adapter Local Area Connection:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . : 
link|improve this answer
I can't understand what you want to say as i don't this type of things in much deep .ipconfig command gives result like Connection-specific DNS Suffix . : IP Address. . . . . . . . . . . . : 192.168.0.2 – chetan Feb 28 '11 at 11:59
expanded upon what you do with ipconfig – Richard Harrison Feb 28 '11 at 15:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.