Help with Net Send

Status
Not open for further replies.

StrifeX

Baseband Member
Messages
82
Okay at school my friends like to net send me sometimes. Sometimes in order to be funny they loop the net send message so its never ending until they close ms dos. How do i make a message loop continously. (Ex: NET SEND "E205-01" Hello) . How do i make that message repeatedly send itself till i close msdos? if it helps any we all use Windows NT.
 
use goto's and labels with batch "scripting" (not really scripting). windows help tells how to write with batch... read read read
 
It's a really simple batch script as Wickedly was saying.

Just open up notepad, and write this

Code:
@echo off
:LABEL 1
NET SEND "E205-01" Hello
Goto 1
End

Then save the file as a .bat

(check to make sure that it is just .bat and not .bat.txt)

Double click the file, and you're set.
 
Status
Not open for further replies.
Back
Top Bottom