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?