Batch file for adding users in bulk:
FOR /L %%i in (1,1,30) DO NET USER abc%%i 123456 /ADD
The above can only add a fixed quantity, prefix, and password.
Can it be changed so the above content can be entered manually?
That is, after running the batch file, manually enter the number of users to add ==
FOR /L %%i in (1,1,30) DO NET USER abc%%i 123456 /ADD
The above can only add a fixed quantity, prefix, and password.
Can it be changed so the above content can be entered manually?
That is, after running the batch file, manually enter the number of users to add ==
