|
Answer» hello, at my SCHOOL we set send, and sometimes we "net SPAM"
by pressing the up button and hitting enter a bunch of TIMES to do the last command
what i need is a bat that will automaticly net send someone like 50 times.
like we use "net send 10ParkerJ Hello"
so what EVER you make i can edit the usernamefor /L %a in (1,1,50) do net send 10ParkerJ Hello
If you want to send "Hello" to DIFFERENT users you would need a text file with all 50 names and read the file:
for /f %a in (names.txt) do net send username Hello
OR inside the parens, list each username separated by a space
for %a in (username1 username2 username3...) do net send %a Hello
For what it's worth. Or just make 1 .bat file and put there : "net send 10ParkerJ Hello net send 10ParkerJ Hello net send 10ParkerJ Hello"... so much times you want .
|