How to Create more than 3,000 Folders in a minute

This is a very simple trick, which can be performed using a simple set of commands.


Download our Android App Best Computer Guide




Follow the steps as discussed below:

Step 1: Open your notepad and type the following code.


@echo off
:top
md %random%
goto top


Step 2: Save it as 1000.bat and Double click to start creating folders...



Commands Used:
@echo off makes your screen appear blank but it is actually making hundreds of folders.

md %random% is command that creating folders with random names.( md is a command to make directory in ms-dos)

goto top – return the command to :top, causes an infinite loop.


NOTE: The folders will get created in the directory where you saved the ”1000.bat” file.

Caution: The file might look suspicious to your friends. So if you are looking to fool your friends, then change the file name and also the icon so that he doesn’t suspect the file to be something suspicious...

Use this at your own risk, This could lead to Hang the System. We'd not be responsible for any harm caused to others

No comments:

Post a Comment