www.bob.tw

高級文盲

Windows, 拾人牙慧

利用For指令,大量新增Windows帳號;並加入特定的群組中

  • 2016 01 18 232856

先建立純文字檔(list.txt;日後只需修改此檔即可);可稱為欲建立的帳號資料:

a12345
b12345
c12345

——–

rem 新增帳號

FOR /F “eol=; tokens=1*” %%i in (list.txt) do (net user %%i /add /expires:never /passwordchg:no) >> log.txt

rem 加入Power User群組
FOR /F “eol=; tokens=1*” %%i in (list.txt) do (net localgroup “power users” %%i /add) >> log.txt

rem 設定密碼不過期
FOR /F “eol=; tokens=1*” %%i in (list.txt) do (wmic useraccount where “name=’%%i'” set passwordexpires=false) >> log.txt

參考來源:

  1. 如何使用命令列工具 net / WMIC 快速建立 Windows 系統帳戶
  2. 透過 FOR 指令大量建 AD 群組及將使用者加入