Hello friends today i'm gonna teach you a trick that crate password protected folder without any software
It's easy tricks...
--> For that you have to only batch file codding in command.
--> With this functionality you can hide your all personal data like movies, pictures, files etc.
--> Without password on one can open this folder.
--> Just Copy paste below code in notepad.
--> And save it with " lock.bat "(without quote and name can be whatever you like but ' .bat ' format is must).
__________________________________CODE__________________________________
TITLE lock folder by anonymous
COLOR 03
ECHO OFF
SET CPSD=anonhell13
CLS
:START
IF EXIST "anon" GOTO HIDE
IF EXIST "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}" GOTO SHOW
GOTO anon
:HIDE
CLS
ECHO.
ECHO ---------------------------------------------
ECHO lock folder - by anonymous.hell13
ECHO ---------------------------------------------
ECHO.
ECHO.
CHOICE /C YN /M "Are you sure you want to lock the folder?"
IF /I %ERRORLEVEL% EQU 2 EXIT
REN "anon" "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}"
ATTRIB /S /D "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}" +H +S
CLS
ECHO.
ECHO ---------------------------------------------
ECHO lock folder - by anonymous.hell13
ECHO ---------------------------------------------
ECHO.
ECHO.
ECHO Folder locked successfully..
PAUSE>NUL
EXIT
:SHOW
COLOR 03
CLS
ECHO.
ECHO ---------------------------------------------
ECHO lock folder - by anonymous.hell13
ECHO ---------------------------------------------
ECHO.
ECHO.
ECHO Please enter the password to unlock the folder...
ECHO.
SET/P "PSWD=>"
IF /I %PSWD% EQU %CPSD% GOTO UNLOCK
COLOR 0C
CLS
ECHO.
ECHO ---------------------------------------------
ECHO lock folder - by anonymous.hell13
ECHO ---------------------------------------------
ECHO.
ECHO.
ECHO The password you entered is incorrect!
PAUSE>NUL
GOTO SHOW
:UNLOCK
ATTRIB /S /D "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}" -H -S
REN "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}" "anon"
CLS
ECHO.
ECHO ---------------------------------------------
ECHO lock folder - by anonymous.hell13
ECHO ---------------------------------------------
ECHO.
ECHO.
ECHO Folder unlocked successfully!
PAUSE>NUL
EXIT
:anon
MD anon
CLS
ECHO.
ECHO ---------------------------------------------
ECHO lock folder - by anonymous.hell13
ECHO ---------------------------------------------
ECHO.
ECHO.
ECHO lock folder created successfully! Put your files in it and secure it. You can unlock it anytime.
PAUSE>NUL
EXIT
NOTE: When you copy the batch file to another directory a new secure folder will be created.
To move the secure folder to another location, first unlock the folder and copy the folder and the batch file to the new directory. Also don't use this as your only mean of security for important files.
--> This is only education purpose only don't misuse of it..
I'll be not responsible of any misuse of you do it