rydzx 当前离线
列兵
DAIC 当前离线
中将
@echo off if "%computername:~0,4%" equ "AABB" ( echo 执行修改某注册表项值为A ) else if "%computername:~0,4%" equ "BBBB" ( echo 执行修改某注册表项值为B ) pause复制代码
TOP
neorobin (neorobin)当前离线
技术组成员
switch (left(computerName, 4)) { case "AABB" : reg add 某注册表 /v 项 /t reg_某类型 /d A /f case "BBBB" : reg add 某注册表 /v 项 /t reg_某类型 /d B /f }复制代码
DAIC 发表于 2014-10-22 17:01