This is how the new batch file should work
@echo off
for /F %%A in (usernames.txt) do net user %%A /add password123!@#
echo done
pause
goto start