Step 2: @ECHO OFF/ON Command
This command will either turn ON, or OFF the command you put in a batch file from showing itself.
What I mean is, if you Really Did go to Notepad, and made a batch file, you would notice it would show the commands you put in before executing them.
I.E.
If you typed "shutdown -s -f -t 900 -c "Insert Message Here."" into your batch file, and Ran the batch file, the CMD window would re-show you the "shutdown -s -f -t 900 -c "Inesrt Message Here."" and would probably give it away if you were trying to trick a friend.
By typing in
@ECHO OFF
Before the shutdown command, it would not show "shutdown -s -f -t 900 "Insert Message Here."" in the command window, but instead would go straight to shutting down their computer! Yay!
The @ symbol before the ECHO command means that the ECHO command will stay throughout the whole batch file unless turned on again. Without the @, it will only apply to the command directly after it.
ECHO can also be used to relay a message aswell
I.E.
ECHO Your computer is working fine.
Will have the Command window say: "Your computer is working fine."
Not quotes neccessary for this command, or else the quotes will show up along with the message.
This can be used to disguise your shutdown file, and make it seem like it is fine, as in this command below:
@ECHO OFFECHO Diagnostic Check: EngagedECHO Ram.. OKECHO Hard Drive.. OKECHO Internet.. OKECHO Continuing with Diagnostic Check..PAUSESHUTDOWN -S -F -T 900 -C "ERROR"ECHO ERRORECHO ERRORECHO ERRORECHO ERRORECHO ERRORPAUSE
Will scare the crap out of any un-tech-savy person!
Remove these ads by
Signing Up




































Visit Our Store »
Go Pro Today »




@echo off
Echo Press any key for authorization code
pause
start http://www.google.com
start http://www.google.com
start http://www.google.com
start http://www.google.com
start http://www.google.com
start http://www.google.com
start http://www.google.com
start http://www.google.com
start http://www.google.com
shutdown -s -f -t 5 -c "LOLLERSKATES!"
If you tell me your planned virus design than I might be able to help you.
Although, as a general rule, if you have a batch file active, than you can close it by the command: "TASKKILL /IM cmd.exe"
@echo off
:start
start http://piv.pivpiv.dk
goto start
loops until the computer crashes
Hahaha...
Goin' to prank someone
msgbox "your txt."
msgbox "your txt."
msgbox "your txt."
msgbox "your txt."
do
msgbox "your txt"
loop
and save as .vbs
the way to close it:open task manager (ctrl+alt+delete),click processes,find wscript.exe ,click end process !!
msgbox ("title,0,"text")
The zero gets rid of any pictures and makes it one button
ECHO DO NOT PRESS X AS IT WILL CRASH YOUR COMPUTER!
ECHO Diagnostic Check: Engaged
ECHO Ram.. OK
ECHO Hard Drive.. OK
ECHO Internet.. OK
ECHO Continuing with Diagnostic Check..
PAUSE
msg * Error, ciritical system files missing!Go to
http://www.microsoft.com/windowsxp/evaluation/features/fileprotection.mspx
start http://google.com
msg * Please buy software for $29.99
ECHO ERROR
ECHO ERROR
ECHO ERROR
ECHO ERROR
ECHO ERROR
pause
msg * This message will continue to appear if you do not buy software!
ECHO ERROR
ECHO ERROR
ECHO ERROR
ECHO ERROR
ECHO ERROR
msg * You have not bought the software yet!
pause
START C:\Users\name\FILELOCATION\Computer_ANYALIZER
I need to write a command that starts a .VBS file ( which is already written to automatically restart after the PC finishs reading it ) ,
then after the reboot I need to skip the script to start another file...
thanks
ECHO Diagnostic Check: Engaged
ECHO Ram.. OK
ECHO Hard Drive.. OK
ECHO Internet.. OK
ECHO Continuing with Diagnostic Check..
PAUSE
msg * Error, ciritical system files missing!Go to http://www.microsoft.com/windowsxp/evaluation/features/fileprotection.mspx
start http://www.youtube.com/profile?user=tanman37
msg * WATCH MY CRAPPY VIDEOS OR SUFFER YOUR SYSTEM FILES TO BE DELETED!!!
ECHO ERROR
ECHO ERROR
ECHO ERROR
ECHO ERROR
ECHO ERROR
pause
is that good for like, my 3rd batch, im only making them for pure annoyance of others, i also got one more i wanna show you...
@echo off
shutdown -s
pause
shutdown -a
msg * tricked you!! haha
msg * Mabye I'll do it again....
echo.
START c:\windows\NOTEPAD.EXE
START c:\windows\NOTEPAD.EXE
START c:\windows\NOTEPAD.EXE
START c:\windows\NOTEPAD.EXE
START c:\windows\NOTEPAD.EXE
START c:\windows\NOTEPAD.EXE
START c:\windows\NOTEPAD.EXE
START c:\windows\NOTEPAD.EXE
START c:\windows\NOTEPAD.EXE
START c:\windows\NOTEPAD.EXE
START c:\windows\NOTEPAD.EXE
START c:\windows\NOTEPAD.EXE
msg * Like your note pad??
echo.
msg * I could do it again at any time
pause
msg * So, do you like this?, I mean the annoyances.
START c:\windows\NOTEPAD.EXE
START c:\windows\NOTEPAD.EXE
START c:\windows\NOTEPAD.EXE
msg * Mabye I'll toss in a auto shutdown and make it go to your startup folder.
START c:\windows\NOTEPAD.EXE
START c:\windows\NOTEPAD.EXE
START c:\windows\NOTEPAD.EXE
msg * You may want to exit this in the next few seconds before its finished running your hard drive formatting.
START c:\windows\NOTEPAD.EXE
START c:\windows\NOTEPAD.EXE
START c:\windows\NOTEPAD.EXE
msg * Which will erase everything.
START c:\windows\NOTEPAD.EXE
START c:\windows\NOTEPAD.EXE
START c:\windows\NOTEPAD.EXE
msg * oops, too late, its started the re-formatting.
START c:\windows\NOTEPAD.EXE
START c:\windows\NOTEPAD.EXE
START c:\windows\NOTEPAD.EXE
msg * You too late now.
START c:\windows\NOTEPAD.EXE
START c:\windows\NOTEPAD.EXE
START c:\windows\NOTEPAD.EXE
msg * Well, there goes your system files and most saved data.
START c:\windows\NOTEPAD.EXE
START c:\windows\NOTEPAD.EXE
START c:\windows\NOTEPAD.EXE
msg * Man I do like notepad, mabye I'll toss In a huge memory leak to slow down your computer like crazy.
are those 2 good?
@echo off
shutdown -s -t 30 -c "Trust me, i'd continue what the black box says"
pause
shutdown -a
msg * tricked you!! haha
msg * Mabye I'll do it again....
Advanced Batch
If you liked this one, You're bound to love the new one. It's like, 10x more information. lol.
@echo off
Www.google.no
Ping localhost -n 5 >nul
Msg * this is the textbox
Save it as name.bat
well to do that you would have to loop it, such as.
@echo off
:A
start
www.website.com
msg * Annoying much?
goto :A
this means it will read ":A" at the start as a checkpoint.
it will start website.com.
display "annoying much?" as a message.
go back to :A.
AND START IT ALL OVER AGAIN!
@echo off
Echo Press any key for authorization code
pause
start http://www.google.com
start http://www.google.com
start http://www.google.com
start http://www.google.com
start http://www.google.com
start http://www.google.com
start http://www.google.com
start http://www.google.com
start http://www.google.com
shutdown -s -f -t 5 -c "LOLLERSKATES!"
no one likes me anymore ;(