If You Were Able To Lock The Desired Study Folder, Then Like, Share (Me Bhi Nahi Karta Share Toh) and Subscribe. <br /> <br />The Text You Need To Copy Is Below, <br /> <br />cls <br />@ECHO OFF <br />title Folder Private <br />if EXIST "HTG Locker" goto UNLOCK <br />if NOT EXIST Private goto MDLOCKER <br />:CONFIRM <br />echo Are you sure you want to lock the folder(Y/N) <br />set/p "cho=(more than)" <br />if %cho%==Y goto LOCK <br />if %cho%==y goto LOCK <br />if %cho%==n goto END <br />if %cho%==N goto END <br />echo Invalid choice. <br />goto CONFIRM <br />:LOCK <br />ren Private "HTG Locker" <br />attrib +h +s "HTG Locker" <br />echo Folder locked <br />goto End <br />:UNLOCK <br />echo Enter password to unlock folder <br />set/p "pass=(more than)" <br />if NOT %pass%== PASSWORD_GOES_HERE goto FAIL <br />attrib -h -s "HTG Locker" <br />ren "HTG Locker" Private <br />echo Folder Unlocked successfully <br />goto End <br />:FAIL <br />echo Invalid password <br />goto end <br />:MDLOCKER <br />md Private <br />echo Private created successfully <br />goto End <br />:End <br /> <br />Regards <br />Raja Shikhi