Board logo

标题: [系统相关] [求助]批处理通过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
  1. @echo off
  2. setlocal enabledelayedexpansion
  3. for /f skip^=1^ tokens^=2^ delims^=^" %%a in ('wmic nicconfig where FullDNSRegistrationEnabled^="true" get ipaddress') do (
  4.     set IP=%%a
  5. )
  6. for /f "tokens=1-2 delims=," %%a in ('type "IP和计算机名.txt"') do (
  7.     if "!IP!" equ "%%a" (
  8.         set "HostName=%%b"
  9.         wmic computersystem where "name='%computername%'" call rename !HostName!
  10.     )
  11. )
复制代码





欢迎光临 批处理之家 (http://www.bathome.net/) Powered by Discuz! 7.2