I'm trying to write a few short scripts with netsh. One to change an adapter to static addressing and one to change the same adapter back to dhcp.

I can get the adapter set with all of the correct static address settings with

netsh interface ip set address "Local Area Connection" static 10.61.1.253 255.255.255.0 10.61.1.1 1

This works fine. When I run the script to switch back to dhcp I get the following message

netsh interface ip set address "Local Area Connection" dhcp

"DHCP is already enabled on this interface."

This is on a Windows 7 machine. Any idea what the problem is?

link|improve this question

You might want to post this to serverfault.com – D.Shawley Apr 4 '11 at 2:24
will do. thanks – BZink Apr 4 '11 at 2:40
feedback

1 Answer

It took me a while of "?" in the command to figure this one out as I had the same issue, but here is the syntax that worked for me in Windows 7: netsh interface ip set address name="Local Area connection" source=dhcp

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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