THIS IS SO SIMPLE TO MAKE UNLIMITED FOLDERS USING THE SCRIPT.
HERE IS THE SCRIPT FOR YOU.
For the folder making, I would use the following command since it can go on forever:
@echo off
:loop
MD %random%
goto loop
This makes folders until you exit the program.
and for password protection of a Batch file, add the following:
:pass
set /p input=Some text :
if %input%==Hi goto hello
if not %input%==Hi goto wrong
:hello
echo Hi!
pause
exit
:wrong
echo Wrong password!
goto pass
0 comments: