First a little introduction, My names Lee. I enjoy hacking and programming. So here's a little code, enjoy! Quote cls @ECHO OFF title Folder Files if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNFiles if NOT EXIST NameOfFolder goto MDFiles :AuthConfirm echo Are you sure u want to Lock Folder (Y/N) set/p "cho=>" if %cho%==Y goto Files if %cho%==y goto Files if %cho%==n goto END if %cho%==N goto END echo Invalid choice. goto AuthConfirm :Files ren Files "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" echo Folder Files Locked! goto End :UNFiles color 0 echo Enter password to Unlock Folder set/p "pass=>" if NOT %pass%==PassWordHere!!! goto FailUnlock color 1 attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Files echo Folder Unlocked successfully! goto End :FailUnlock echo Invalid password! echo Try again? (Y/N) set/p "choice=>" if %choice%==Y goto UNFiles if %choice%==y goto UNFiles if %choice%==N goto END if %choice%==n goto END :MDFiles md Files echo Folder Files created successfully! goto End :End Installation! 1. Open Notepad 2. Copy and Paste the provided code inside. 3. CTRL+H >> Find - PasswordHere!!! Replace - [Your Password] 4. File >> Save As >> Folder Locker.bat 5. Rename the folder to "Files" and put the BATCH file with it (NOT IN IT!) FAQ! 1. Invalid Password - Entered wrong password! CASE SENSITIVE!
|