vote up 1 vote down star

There's probably some nice way of doing it (in Windows XP) in VBScript (or some other scripting language) with registry tweaks. Anyone know how?

flag

Do you have a static address, DHCP address, ...? – TheJacobTaylor Aug 20 at 3:30
A mix of static and dynamic. – boost Aug 20 at 3:38

1 Answer

vote up 3 vote down check

well if you don't mind just doing a regular batch script then you can use the netsh tool

It's been a while but I believe the command is something like this:

netsh interface ipv4 set address name=”Local Area Connection” source=static address=<ip address> mask=<netmask> gateway=<router ip address>

As far as vbscript and such I have no idea but I'm sure it's possible.

link|flag
Wow, that's impressive. And, hey, I'm not going to turn my nose up that that just because it's using batch commands. – boost Aug 20 at 4:07

Your Answer

Get an OpenID
or

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