bugmagnet
bugmagnet

Reputation: 7769

How do I programmatically change workstation's ip address?

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?

Upvotes: 3

Views: 1441

Answers (1)

Jeremy Wall
Jeremy Wall

Reputation: 25245

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.

Upvotes: 5

Related Questions