Quickly set up the batch code for an IP address under Windows XP/7

Source: Internet
Author: User

@ To save the following bat, you can use it.

@echo off

echo is configuring IP, please wait ...

Set name= "Local Area Connection"

Set ipaddress=1.2.3.4

Set mask=255.255.255.0

Set gateway=1.2.3.4

Set dns=1.2.3.4

Set wins=1.2.3.4

Echo is configuring%name%, please wait ...

ECHO is configuring preferred dns:%dns% ...

netsh interface ip set DNS name= "Local Area Connection" Source=static addr=%dns%

ECHO is configuring Standby dns:%wins% ...

netsh interface ip add DNS "Local Area Connection" addr=%wins% index=2

echo is configuring IP, mask, and gateway:%ipaddress%%mask%%gateway% ...

netsh interface ip set address name=%name% source=static addr=%ipaddress% mask=%mask% gateway=%gateway%

Echo IP configuration succeeded!

Echo. & Pause

Alert at DNS stage when a win IP is configured with bat: The configured DNS server does not exist or is not correct. The solution is to put the DNS settings code before the IP address, the estimated reason is that IP first set up, looking for DNS when the monk, have the time to study it well.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.