0% found this document useful (0 votes)
259 views1 page

Setting IP Adress Through Batch File

This 3 line command configures a static IP address for a local network connection on Windows. It uses the Netsh tool to set the IP address and subnet mask for an interface, specifying the connection name, a static address of 0.0.0.0, and a mask of 0.0.0.0.

Uploaded by

Muneeb Khan
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
259 views1 page

Setting IP Adress Through Batch File

This 3 line command configures a static IP address for a local network connection on Windows. It uses the Netsh tool to set the IP address and subnet mask for an interface, specifying the connection name, a static address of 0.0.0.0, and a mask of 0.0.0.0.

Uploaded by

Muneeb Khan
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

Netsh interface ip set address name="Your Local Area Connection Name"

source=static addr=0.0.0.0 mask=0.0.0.0

You might also like