The following batch script will add a group of users to Windows, set no password, and require a password change at first logon.
@echo off setlocal enabledelayedexpansion set user1=John Q. Smith set user2=Jane Doe set user3=Joe Montana set user4=Alicia Silverstone set users=(user1 user2 user3 user4 user5 user6) for %%u in %users% do ( echo net user %%u /logonpasswordchg:yes /fullname:"!%%u!" /add )