Step 1:
@echo off
:start
goto start1
:start1
color 2
:start
echo Deleting C:/WINDOWS/system32
pause
goto :matrix
:matrix
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto matrix




















Remove these ads by









![How to freak out your friends (with their computer) [Tricks and Fun Volume 1]](http://www.instructables.com/files/deriv/FKC/BNGB/FSSIUKAD/FKCBNGBFSSIUKAD.SQUARE.jpg)





Visit Our Store »
Go Pro Today »




Why do you have TWO labels ':start' ?
And why don't you use any of them?
Why is there the first GOTO to start1 (and the label start1)?
The batch would go there anyway. It's just the next command!
Why is there the first GOTO to label matrix? Same thing, the batch would go there anyway as it is just the next command!
So, the batch threatens me with deleting System32 and waits for me to press a key (PAUSE)? The only Keys I would press are Ctrl-C and abort the thing. If you want to program a pause, use the PING command (as in PING 127.0.0.1 -n <x> with <x>=number of seconds to wait plus one)
So a more lean version would be:
@echo off
color 2
echo Deleting C:/WINDOWS/system32
ping 127.0.0.1 /n 5
:matrix
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto matrix