我在家使用动态IP,在公司使用固定IP,所以经常需要来回切换IP设置,非常麻烦!今天实在忍无可忍,就整理了一份脚本以减轻来回切换IP的烦恼!恐有遗忘,谨作记录!
@echo off
rem //设置变量
set NAME="本地连接"
rem //以下属性值可以根据需要更改
set ADDR=172.16.18.184
set MASK=255.255.255.0
set GATEWAY=172.16.18.254
set DNS1=172.16.17.1
set DNS2=8.8.8.8
rem //以上属性依次为IP地址、子网掩码、网关、首选DNS、备用DNS
echo 当前可用操作有:
echo 1 设置为静态IP
echo 2 设置为动态IP
echo 3 退出
echo 请选择后回车:
set /p operate=
if %operate%==1 goto 1
if %operate%==2 goto 2
if %operate%==3 goto 3
:1
echo 正在设置静态IP,请稍等...
rem //可以根据你的需要更改
echo IP地址 = %ADDR%
echo 掩码 = %MASK%
echo 网关 = %GATEWAY%
netsh interface ipv4 set address name=%NAME% source=static addr=%ADDR% mask=%MASK% gateway=%GATEWAY% gwmetric=0 >nul
echo 首选DNS = %DNS1%
netsh interface ipv4 set dns name=%NAME% source=static addr=%DNS1% register=PRIMARY >nul
echo 备用DNS = %DNS2%
netsh interface ipv4 add dns name=%NAME% addr=%DNS2% index=2 >nul
echo 静态IP已设置!
pause
goto 3
:2
echo 正在设置动态IP,请稍等...
echo 正在从DHCP自动获取IP地址...
netsh interface ip set address "本地连接" dhcp
echo 正在从DHCP自动获取DNS地址...
netsh interface ip set dns "本地连接" dhcp
echo 动态IP已设置!
pause
goto 3
:3
exit
2013年6月4日星期二
簡單的腳本語言實現常用的win7/xp設置
keywords:windows7 bat自动批处理改变IP地址、DNS和代理设置
改变IP地址设置:
@echo off
netsh interface ipv4 set address "无线网络连接" static 192.168.100.200 255.255.255.0 192.168.100.1
netsh interface ipv4 set dns name="无线网络连接" source=static addr=8.8.4.4
netsh interface ipv4 add dns name="无线网络连接" addr=61.177.7.1 index=2
echo ------------------------------------------------------------------------------
echo ---------------------------------------------------------------------------------
echo -----------------------------
改为DHPC(自动获取)设置:
@echo offf
netsh interface ipv4 set address name="无线网络连接" source=dhcp
netsh interface ipv4 set dns name="无线网络连接" source=dhcp
echo------------------------------
开启IE代理服务器设置:
@echo off
title 自动设置代理服务器
echo 正在设置代理服务器……
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 1 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /d "192.168.100.100:808" /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyOverride /t REG_SZ /d "" /f
echo 正在刷新设置……
ipconfig /flushdns
关闭IE代理服务器设置:
@echo off
title 自动清除IE代理
echo 正在清空代理服务器设置……
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /d "" /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyOverride /t REG_SZ /d 0 /f
echo 代理服务器设置已经清空
echo 正在刷新设置……
ipconfig /flushdns
批处理自动选择网络设置全文
注:复制到记事本文件中,别存为,后缀改为”.bat”文件。在win7系统中运行时,会提示,“请求的操作需要提升为<作为管理员运行>”;只需要在此bat文件上右击“以管理员身份运行”即可。
全文如下:
@echo off
color 1f
title windows 7 多网络环境自动切换管理
echo.
echo ********************************************
echo *** windows 7 双网络环寺自动切换管理 ***
echo *** 作者:王明洪 MSN:kswmh@hotmail.com ***
echo ********************************************
echo *** 设置IP参数,设置IE代理 ***
echo.
echo.
goto menus
:menus
echo.
echo 请选择:
echo.
echo 1 切换到家庭代理网络
echo.
echo 2 切换到学校自动获取IP地址网络。
echo.
echo 3 放弃设备,退出
echo.
set /p select=请输入菜单对应数字后回车:
if /i "%select%" == "1" goto home
if /i "%select%" == "2" goto school
if /i "%select%" == "3" exit
goto menus
:home
cls
netsh interface ip reset "无线网络连接"
echo 设置IP...设置网关.....设置子网
netsh interface ipv4 set address "无线网络连接" static 192.168.100.200 255.255.255.0 192.168.100.1
echo 设置DNS...
netsh interface ipv4 set dns name="无线网络连接" source=static addr=8.8.4.4
netsh interface ipv4 add dns name="无线网络连接" addr=61.177.7.1 index=2
echo 设置IE代理...
echo 正在设置代理服务器……
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 1 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /d "192.168.100.100:808" /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyOverride /t REG_SZ /d "" /f
echo 正在刷新设置……
ipconfig /flushdns
goto exit
:school
cls
echo 设置学校网络自动IP地址.
netsh interface ipv4 set address name="无线网络连接" source=dhcp
echo 设置DNS...
netsh interface ipv4 set dns name="无线网络连接" source=dhcp
echo 正在清除代理服务器设置……
echo 正在清空代理服务器设置……
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /d "" /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyOverride /t REG_SZ /d 0 /f
echo 代理服务器设置已经清空
echo 正在刷新设置……
ipconfig /flushdns
goto exit
:exit
cls
echo.
cho.
echo.
echo.
echo.
echo ************恭喜!网络设置以完成。
echo.
echo.
echo.
echo.
echo.
echo.
pause
exit
改变IP地址设置:
@echo off
netsh interface ipv4 set address "无线网络连接" static 192.168.100.200 255.255.255.0 192.168.100.1
netsh interface ipv4 set dns name="无线网络连接" source=static addr=8.8.4.4
netsh interface ipv4 add dns name="无线网络连接" addr=61.177.7.1 index=2
echo ------------------------------------------------------------------------------
echo ---------------------------------------------------------------------------------
echo -----------------------------
改为DHPC(自动获取)设置:
@echo offf
netsh interface ipv4 set address name="无线网络连接" source=dhcp
netsh interface ipv4 set dns name="无线网络连接" source=dhcp
echo------------------------------
开启IE代理服务器设置:
@echo off
title 自动设置代理服务器
echo 正在设置代理服务器……
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 1 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /d "192.168.100.100:808" /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyOverride /t REG_SZ /d "" /f
echo 正在刷新设置……
ipconfig /flushdns
关闭IE代理服务器设置:
@echo off
title 自动清除IE代理
echo 正在清空代理服务器设置……
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /d "" /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyOverride /t REG_SZ /d 0 /f
echo 代理服务器设置已经清空
echo 正在刷新设置……
ipconfig /flushdns
批处理自动选择网络设置全文
注:复制到记事本文件中,别存为,后缀改为”.bat”文件。在win7系统中运行时,会提示,“请求的操作需要提升为<作为管理员运行>”;只需要在此bat文件上右击“以管理员身份运行”即可。
全文如下:
@echo off
color 1f
title windows 7 多网络环境自动切换管理
echo.
echo ********************************************
echo *** windows 7 双网络环寺自动切换管理 ***
echo *** 作者:王明洪 MSN:kswmh@hotmail.com ***
echo ********************************************
echo *** 设置IP参数,设置IE代理 ***
echo.
echo.
goto menus
:menus
echo.
echo 请选择:
echo.
echo 1 切换到家庭代理网络
echo.
echo 2 切换到学校自动获取IP地址网络。
echo.
echo 3 放弃设备,退出
echo.
set /p select=请输入菜单对应数字后回车:
if /i "%select%" == "1" goto home
if /i "%select%" == "2" goto school
if /i "%select%" == "3" exit
goto menus
:home
cls
netsh interface ip reset "无线网络连接"
echo 设置IP...设置网关.....设置子网
netsh interface ipv4 set address "无线网络连接" static 192.168.100.200 255.255.255.0 192.168.100.1
echo 设置DNS...
netsh interface ipv4 set dns name="无线网络连接" source=static addr=8.8.4.4
netsh interface ipv4 add dns name="无线网络连接" addr=61.177.7.1 index=2
echo 设置IE代理...
echo 正在设置代理服务器……
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 1 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /d "192.168.100.100:808" /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyOverride /t REG_SZ /d "" /f
echo 正在刷新设置……
ipconfig /flushdns
goto exit
:school
cls
echo 设置学校网络自动IP地址.
netsh interface ipv4 set address name="无线网络连接" source=dhcp
echo 设置DNS...
netsh interface ipv4 set dns name="无线网络连接" source=dhcp
echo 正在清除代理服务器设置……
echo 正在清空代理服务器设置……
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /d "" /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyOverride /t REG_SZ /d 0 /f
echo 代理服务器设置已经清空
echo 正在刷新设置……
ipconfig /flushdns
goto exit
:exit
cls
echo.
cho.
echo.
echo.
echo.
echo ************恭喜!网络设置以完成。
echo.
echo.
echo.
echo.
echo.
echo.
pause
exit
winxp和win7下设置ip的批处理脚本
命名为*.bat,例如命名为setip.bat
windows xp系统的设置如下:
@echo off
echo HTMer修改IP地址工具
echo 正在设置您的IP地址,请稍等......
netsh interface ip set address name="本地连接" source=static addr=58.0.99.124 mask=255.255.255.0
netsh interface ip set address name="本地连接" gateway=58.0.99.254 gwmetric=0
netsh interface ip delete dns "本地连接" all
netsh interface ip set wins name="本地连接" source=static addr=none
windows 7系统的设置如下:
@echo off
echo HTMer修改IP地址工具
echo 正在设置您的外网IP地址,请稍等......
netsh interface ip set address name="本地连接" static 58.0.183.213 255.255.255.0 58.0.183.254
其中:echo表示输出
netsh表示命令
@echo off
echo HTMer修改IP地址工具
echo 正在设置您的IP地址,请稍等......
netsh interface ip set address name="本地连接" source=static addr=58.0.99.124 mask=255.255.255.0
netsh interface ip set address name="本地连接" gateway=58.0.99.254 gwmetric=0
netsh interface ip delete dns "本地连接" all
netsh interface ip set wins name="本地连接" source=static addr=none
windows 7系统的设置如下:
@echo off
echo HTMer修改IP地址工具
echo 正在设置您的外网IP地址,请稍等......
netsh interface ip set address name="本地连接" static 58.0.183.213 255.255.255.0 58.0.183.254
其中:echo表示输出
netsh表示命令
订阅:
博文 (Atom)