码迷,mamicode.com
首页 > 其他好文 > 详细

批处理批量创建90个用户

时间:2014-10-12 19:11:28      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:io   ar   for   sp   div   art   on   cti   ad   

rem create90.bat
   rem 用net user命令创建90用户
   
for /L %%i in (1,1,9) do net user k0%%i     /add /active:yes /expires:never /passwordchg:no /passwordreq:no /times:all /usercomment:"管理员" /workstations:*
for /L %%i in (1,1,9) do net localgroup administrators k0%%i  /add

for /L %%i in (10,1,90) do net user k%%i   /add /active:yes /expires:never /passwordchg:no /passwordreq:no /times:all /usercomment:"管理员" /workstations:* 
for /L %%i in (10,1,90) do net localgroup administrators k%%i  /add

批处理批量创建90个用户

标签:io   ar   for   sp   div   art   on   cti   ad   

原文地址:http://www.cnblogs.com/mengfanrong/p/4020665.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!