|
http://bbs.wuyou.net/forum.php?mod=viewthread&tid=179148&extra=page%3D1
判断计算机名,如果计算机名是pc101就运行pc101.bat,如果计算机名是pc102就运行pc102.bat,有59台电脑。
也就是合并59个批处理为1个批处理
pc101.bat
@echo off
net use x: \\default\student\pc101 "" /user:administrator /persistent:yes
pc102.bat
@echo off
net use x: \\default\student\pc102 "" /user:administrator /persistent:yes
附件是之前写的59个批处理
[ 本帖最后由 小松鼠 于 2010-10-28 12:39 编辑 ] |
|