本机批处理根据MAC地址改计算机名、IP、掩码、网关、DNS

网关ip地址  时间:2021-03-03  阅读:()

http://lzhiren.blog.163.com/blog/static/859410420099293145538/

批处理根据MAC地址改计算机名、 IP、掩码、网关、 DNS复制内容到剪贴板

码:-----------------------------------------------------------------

--------------------------------------------------------------------

@ECHO OFF

@cls

ECHO: : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : :

ECHO : : GHOST完成后根据网卡MAC自动设置机名和IP的批处理: :

ECHO: : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : :

: : : :清空环境变量

Set IPAddress=

Set strMac=

Set MacAddress=

Set CName=

Set scfile=

Set sc=

Set MacWMIC=

Set ConnName=

If not "%1"=="run" Goto setbootcd/d %temp%

REM : : : :请手动修改列表

ECHO [ComputerName] [MacAddress] [IPAddress] >iplist. txt

ECHO LX001 00-04-01-02-09-90 192. 168. 1. 1 >>iplist. txt

ECHO LX002 00-04-01-02-09-91 192. 168. 1.2 >>iplist. txt

ECHO LX003 00-04-01-02-09-92 192. 168. 1.3 >>iplist. txt

ECHO LX004 00-04-01-02-09-93 192. 168. 1.4 >>iplist. txt

ECHO LXASP 00-03-FF-93-39-9F 192. 168.0. 10 >>iplist. txt

REM : : : :请手动修改子网掩码

Set mask=255.255.255.0

REM : : : :请手动修改默认网关

Set gway=192. 168.0. 1

ECHO : : : :开始查找网卡: : : :

: : : :获取机器的TCP/IP配置if exist ipconfig. txt del ipconfig. txtipconfig /all >ipconfig. txt

: : : :分离出机器的物理地址并保存到( phyaddr. txt)文件中if exist phyaddr. txt del phyaddr. txtif exist phyaddr1. txt del phyaddr1. txtfind "Physical Address" ipconfig. txt >phyaddr. txt

Set sc=1

Set scfile=phyaddr. txtgoto scan

: : : :多网卡时扫描每个网卡MAC地址

:rescan1

Set sc=%sc%1

Set scfile=phyaddr1. txtfind /v "%strMac%" phyaddr. txt >%scfile%

Goto scan

:rescan2

Set sc=%sc%1

Set scfile=phyaddr. txtfind /v "%strMac%" phyaddr1. txt >%scfile%

Goto scan

:scan

: : : :从(c:\phyaddr. txt)文件中取得物理地址字符串并赋给变量"MacAddress"for /f "skip=2 tokens=12" %%M in (%scfile%) do set strMac=%%M: : : :以变量"strMac"为关键字搜索(iplist. txt)中相同的字符串行并保存到

(PCCfg. txt)find "%strMac%" iplist. txt >PCCfg. txt

: : : :找出机器名(从"PCCfg. txt"中分离出机器名字段并赋给变量"CName")for /f "skip=2 tokens=1" %%N in (PCCfg. txt) do set CName=%%Nif not "%CName%"=="" Goto found

: : : :支持最多扫描5个网卡

If "%sc%"=="11111" Goto failed

If "%sc%"=="1" Goto rescan1if %scfile%==phyaddr. txt Goto rescan1if %scfile%==phyaddr1. txt Goto rescan2

:found

ECHO本机MAC: %strMac%

ECHO 目标名称: %CName%

: : : :显示IP地址. (从"PCCfg. txt"中分离出IP地址字段并赋给变

量"IPAddress")for /f "skip=2 tokens=3" %%I in (PCCfg. txt) do set IPAddress=%%IECHO 目标地址: %IPAddress%

: : : :显示网卡MAC地址. (从"PCCfg. txt"中分离出MAC地址字段并赋给变量"MacAddress")for /f "skip=2 tokens=2" %%M in (PCCfg. txt) do set MacAddress=%%MECHO 目标MAC: %MacAddress%

: : : :创建注册表文件

: : : :用变量"%CName%"去替换实际的机器名

ECHO Windows Registry Editor Version 5.00 >PCName.reg

ECHO. >>PCName.reg

ECHO

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName] >>PCName.reg

ECHO "ComputerName"="%CName%" >>PCName.reg

ECHO. >>PCName.reg

ECHO

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters] >>PCName.reg

ECHO "NV Hostname"="%CName%" >>PCName.reg

ECHO "Hostname"="%CName%" >>PCName.reg

ECHO : : : :正在更改设置: : : :

REM : : : :导入注册表文件。用的时候把" : : "去掉regedit /s PCName.reg

: : : :找出MAC地址所对应的连接名称for /f "tokens=1,2,3,4,5,6 delims=-" %%A in ("%MacAddress%") do setMacWMIC=%%A:%%B:%%C:%%D:%%E:%%F

WMIC NIC WHERE "MACAddress='%MacWMIC%' AND NetConnectionID!=NULL" GETNetConnectionID /value >phyaddr. txt

WMIC NIC WHERE "MACAddress='%MacWMIC%' AND NetConnectionID!=NULL" GETNetConnectionID /value >phyaddr. txt

Type phyaddr. txt >phyaddr1. txtfor /f "skip=2 tokens=2* delims==" %%A in (phyaddr1. txt) do setConnName=%%A

Echo连接名称: %ConnName%

REM : : : :修改IP地址。用的时候把" : : "去掉netsh interface ip set address name="%ConnName%" source=staticaddr=%IPAddress% mask=%mask% gateway=%gway% gwmetric=1

ECHO : : : :准备重启 : : : :setlocal

: : : :删除临时文件echo [version] > ipdel. infecho signature=$chicago$ >> ipdel. infecho [defaultinstall] >> ipdel. infecho delfiles=delfiles1 >> ipdel. infecho delfiles=delfiles2 >> ipdel. infecho [destinationdirs] >> ipdel. infecho delfiles1=16391 >> ipdel. infecho delfiles2=01 >> ipdel. infecho [delfiles1] >> ipdel. infecho ip. lnk, , , 1 >> ipdel. infecho [delfiles2] >> ipdel. infecho PCCfg. txt, , , 1 >> ipdel. infecho PCName.reg, , , 1 >> ipdel. infecho ipconfig. txt, , , 1 >> ipdel. inf

echo iplist. txt, , , 1 >> ipdel. infecho phyaddr1. txt, , , 1 >> ipdel. infecho phyaddr. txt, , , 1 >> ipdel. inf

RUNDLL32.EXE SETUPAPI.DLL, InstallHinfSection DefaultInstall

128 . \ipdel. infdel ipdel. inf

: : : :准备重启的文件echo [version] > reboot. infecho signature=$chicago$ >> reboot. infecho [defaultinstall] >> reboot. inf

REM : : : :立即重启。用的时候把" : : "去掉

RUNDLL32.EXE SETUPAPI.DLL, InstallHinfSection DefaultInstall

1 . \reboot. infdel reboot. inf

Goto end

:setboot

Echo [Version] >ipstart. inf

Echo Signature="$CHICAGO$" >>ipstart. inf

Echo [DefaultInstall] >>ipstart. inf

Echo UpdateInis = AddLink >>ipstart. inf

Echo [AddLink] >>ipstart. inf

Echo setup. ini, progman.groups, , "group1=""%%16391%%""" >>ipstart. infEcho setup. ini, group1, , """IP"", """"""%%01%%\ip.bat""""run

RUNDLL32.EXE SETUPAPI.DLL, InstallHinfSection DefaultInstall

128 . \ipstart. infdel ipstart. inf

Echo完成在“开始”菜单的“启动”中创建快捷方式。

Echo请在此之后使用GHOST创建此分区的GHO镜像文件。pause

Goto End

:failed

ECHO ! ! ! !查找网卡失败! ! ! !

:end

复制内容到剪贴板

码:-----------------------------------------------------------------

---------------------------echo offtitle扫描即将开始 制作color aclsecho.echo

------------------------------------------------------------echo QQ:欢迎交流echo.echo 本批处理是扫描内网IP、MAC地址和计算机名的并自动保存文件TXT文件echo.echo 再利用“自动改IP.bat”实现自动改IP、计算机名、网络号、DNS、 网关等echo.echo 并自动安装冰点将冰点改名为DF.exe,并保存在“自动改IP.bat”同目录下echo.echo 为了扫描到的结果正确请按照正确格式输入echo.echo---------------------PS制作不容易请保留版

权----------------------set /p gateway=请输入内网网关set /p dns1=请输入你的首选DNSset /p dns2=请输入你的备用DNSecho gateway %gateway% >info. txtecho DNS1 %dns1% >>info. txtecho DNS2 %dns2% >>info. txtecho MAC IP 计算机名>>info. txtset rc=0set /p ipq=请输入内网IP的前3位如192. 168.0set /p iph=请输入你要扫描的IP起始段IP的最后一位set /p con1=请输入你要扫描的数量set /a con= %iph%+%con1%

:scanset ip=%ipq%.%iph%ping -n 1 -w 1 %ip% >nul

title正在检测%ip% 制作if %errorlevel% GEQ 1 goto dzfor /f "tokens=1" %%i in ('nbtstat -a %ip% ^ | find /i "UNIQUE" ^ | find/i "00"' ) do set pcname=%%ifor /f "tokens=4" %%i in ('nbtstat -a%ip% ^ | find /i "MAC Address"' ) doset mac=%%iecho %mac% %ip% %pcname% >>info. txtset /a iph=%iph%+1set /a rc=%rc%+1if %iph% GTR %con% goto endgoto scan

:dzecho %ip%不在线无法扫描set /a iph=%iph%+1if %iph% GTR %con% goto endgoto scan

:endtitle扫描完毕 制作echo 扫描完毕! !

@echo共扫描%con%台PC。其中%rc%台PC在线! !pauseecho offfor /f "tokens=2" %%i in ('findstr /r /i "dns1" info. txt' ) do Setdns1=%%ifor /f "tokens=2" %%i in ('findstr /r /i "dns2" info. txt' ) do Setdns2=%%ifor /f "tokens=2" %%i in ('findstr /r /i "gateway" info. txt' ) do Setgateway=%%ifor /f "tokens=2 delims=:" %%i in (' ipconfig /all ^ | find /i "PhysicalAddress"' ) do Set mac=%%ifor /f "tokens=2,3 " %%i in ('findstr /r /i "%mac%" info. txt' ) do setip=%%i & set pcname=%%jfor /f "tokens=4,5 delims=. " %%i in ('findstr /r /i "%mac%" info. txt' )do Set /a netkey=%%i+%%j

: :判断本地连接赋值ljfor /f "tokens=3 delims=: " %%i in (' ipconfig ^ |findstr /r "adapter"' )do set lj=%%i

@echo本地连接名为 %lj%

@echo本机IP为 %ip%

@echo本机计算机名为 %pcname%

@echo本机首选DNS为 %dns1%

@echo本机备用DNS为 %dns2%

@echo 内网网关为 %gateway%

@echo本地网络号为 %netkey%

@echo正在修改IP等信息。 。 。 。ping 127.0.0. 1 -n 2 >nulnetsh interface ip set address name="%lj%" source=static addr=%ip%mask=255.255.255.0 gateway=%gateway% gwmetric=1netsh interface ip set dns name="%lj%" source=static addr=%dns1%netsh interface ip add dns "%lj%" %dns2% index=2

REG add "HKLM\SYSTEM\CurrentControlSet\Services\NwlnkIpx\Parameters"/v VirtualNetworkNumber /t REG_DWORD /d %netkey% /f

: :更改计算机名reg add

"HKLM\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName" /vComputerName /t reg_sz /d %pcname% /f

REG add "HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters" /v"Hostname" /t REG_SZ /d %pcname% /f

REG add "HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters" /v"NV Hostname" /t REG_SZ /d %pcname% /f

复制内容到剪贴板

码:-----------------------------------------------------------------

--------------------------------------------------------------------

---------------------------

@echo offcolor 0asetlocal EnableDelayedExpansiontitle 自动改IP,计算机名,批处理,新东方红网吧专用版by彬set mask=255.255.255.0set gateway=192. 168. 1. 1set DNS1=202.96. 128.86set DNS2=202.96. 128. 166set DNS3=61. 144.56. 100set DNS4=202.96. 128.68echo.

echo. 完成获取资料,请检查正确后按确认键开始执行修改任务echo.for /f "tokens=2 delims=:" %%M in (' ipconfig /all^ |find /i "PhysicalAddress"' ) do set Mac=%%Mecho. 本机MAC地址: %Mac% (硬件获取)set PCMAC=%MAC:~1%echo.for /f "tokens=1" %%a in (' type MAC. ini^ |find /i "%PCMac%"' ) do (setpcname=%%a)echo 本机计算机名: %pcname% (动态获取)echo.for /f "tokens=2" %%b in (' type MAC. ini^ |find /i "%PCMac%"' ) do (setmyip=%%b)echo 本机IP地址: %myip% (动态获取)echo.echo.****************************************************************

*********echo 子网掩码: %mask% (静态获取)echo 本机网关: %gateway% (静态获取)echo. 本机DNS1: %DNS1% (静态获取)echo. 本机DNS2: %DNS2% (静态获取)echo. 本机DNS3: %DNS3% (静态获取)echo. 本机DNS4: %DNS4% (静态获取)echo.pauseecho 修改计算机器名ing. . .reg add"HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam" /v@/t REG_SZ /d "%pcname%" /freg add

"HKLM\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName" /v"ComputerName" /t REG_SZ /d "%pcname%" /f

香港云服务器 1核 256M 19.9元/月 Mineserver Ltd

Mineserver(ASN142586|UK CompanyNumber 1351696),已经成立一年半。主营香港日本机房的VPS、物理服务器业务。Telegram群组: @mineserver1 | Discord群组: https://discord.gg/MTB8ww9GEA7折循环优惠:JP30(JPCN2宣布产品可以使用)8折循环优惠:CMI20(仅1024M以上套餐可以使用)9折循...

国内云服务器 1核 2G 2M 15元/月 萤光云

标题【萤光云双十二 全场6折 15元/月 续费同价】今天站长给大家推荐一家国内云厂商的双十二活动。萤光云总部位于福建福州,其成立于2002 年。主打高防云服务器产品,主要提供福州、北京、上海 BGP 和香港 CN2 节点。萤光云的高防云服务器自带 50G 防御,适合高防建站、游戏高防等业务。这家厂商本次双十二算是性价比很高了。全线产品6折,上海 BGP 云服务器折扣更大 5.5 折(测试了一下是金...

ZJI(月付480元),香港阿里云专线服务器

ZJI是成立于2011年原Wordpress圈知名主机商—维翔主机,2018年9月更名为ZJI,主要提供香港、日本、美国独立服务器(自营/数据中心直营)租用及VDS、虚拟主机空间、域名注册业务。本月商家针对香港阿里云线路独立服务器提供月付立减270-400元优惠码,优惠后香港独立服务器(阿里云专线)E3或者E5 CPU,SSD硬盘,最低每月仅480元起。阿里一型CPU:Intel E5-2630L...

网关ip地址为你推荐
淘宝收费淘宝都什么服务是收费的?spgnux思普操作系统怎么样个性qq资料QQ个性资料ps抠图技巧ps抠图多种技巧,越详细越好,急~~~~~~~今日热点怎么删除今日热点怎么卸载删除 今日热点新闻彻底卸载删qq空间装扮qq空间的装扮空间在哪?创维云电视功能创维健康云电视有什么功能?bt封杀北京禁用BT下载,是真的吗?为什么?火狐flash插件崩溃火狐浏览器flash插件崩溃怎么办火狐flash插件崩溃火狐Flash插件经常崩溃
虚拟主机控制面板 景安vps 阿里云邮箱登陆首页 l5520 表单样式 ssh帐号 骨干网络 美国十次啦服务器 创梦 双十一秒杀 ftp免费空间 环聊 河南移动梦网 江苏徐州移动 阿里云个人邮箱 蓝队云 美国服务器 ftp是什么东西 卡巴斯基免费版下载 饭桶 更多