Our company is planning on switching to a new subnet in the near future to make more room on the network. I thought that the transition might go smoother if we had a batch file that everyone could run to change the subnet for them.

My code thus far looks like this:

set maskvar=255.255.255.0
ECHO Setting IP Address and Subnet Mask
netsh interface ip set address local static mask=%maskvar%

This doesn't work because it wants a value for the address as well, which would look something like this.

netsh interface ip set address local static addr=%addrvar% mask=%maskvar%

I would like to keep the address that is already on the machine. Can I pull it from an already existing variable? Is there a better way to do this?

Any useful input would be greatly appreciated.

link|improve this question
feedback

1 Answer

Why not pull the ip address from ipconfig, set it as a variable and then assign it in netsh?

link|improve this answer
Your post got me looking and I found this stackoverflow.com/questions/5414800/…. I was able to use it to complete the project. Thanks for your input!. – Jason Kirby Aug 16 '11 at 16:16
feedback

Your Answer

 
or
required, but never shown

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