Wednesday, 15 January 2014

Create More than 5000 Folders with in a Second

                                 Create More than 5000 Folder's with in a Second in Windows operating system. This is Command prompt (CMD) trick. Don't miss use this trick. Its only for education purpose.


Step 1 : Open the Text Document and type the below coding.

 

@echo off
:top
md %random%
goto top 

Step 2 : Save As with the name of 5000.bat (.bat extension is the commom) 
                @echo off - Its makes a screen appear blank.
                :top - Causes an infinite loop.
                 md %random% - Is a command that creating with random names. 
                 MD - Stands for Making Directory in Microsoft DOS (Disk Operating System).

Notes : Work this process in any sub directory. 
               Don't place it in Desktop or Hard disk.
               You can use any name to save the .bat  file (anyname.bat).
               Change the name and icon to fool your friends its a virus.

*** If you have any doubts post your comments below ***

No comments:

Post a Comment