标题: [系统相关] [求助]批处理通过IP比对,来修改计算机名 [打印本页]
作者: herome2016 时间: 2019-1-24 14:04 标题: [求助]批处理通过IP比对,来修改计算机名
目前,局域网有一百多台电脑,后台有管理软件可以后台运行批处理。现在每台电脑都是固定IP,但是计算机名不统一,需要统一修改。已经将IP和用户名对应好在excel文件中。
如何通过批处理通过读取本机IP,与表中的IP进行比对,从而实现自动将计算机名称改为对应的。
作者: Batcher 时间: 2019-1-24 15:57
把IP和对应的计算机名放在"IP和计算机名.txt"里面,以逗号作为分隔符,例如:
192.168.0.1,abc
192.168.0.2,efg- @echo off
- setlocal enabledelayedexpansion
- for /f skip^=1^ tokens^=2^ delims^=^" %%a in ('wmic nicconfig where FullDNSRegistrationEnabled^="true" get ipaddress') do (
- set IP=%%a
- )
- for /f "tokens=1-2 delims=," %%a in ('type "IP和计算机名.txt"') do (
- if "!IP!" equ "%%a" (
- set "HostName=%%b"
- wmic computersystem where "name='%computername%'" call rename !HostName!
- )
- )
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |