Lock Folder Without Software
First Tip
1. Open Notepad and copy the below code
2. Change your password in the code it's shown the place where to type your password.
3. Save file as locker.bat
4. Now double click on locker .bat
5. It will create folder with Locker automatically for you. After creation of the Locker folder, place the contents you want to lock inside the Locker Folder and run locker.bat again
6. Copy this below in Note Pad
cls
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker "Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}"
attrib +h +s "Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%== type your password here goto FAIL
attrib -h -s "Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}"
ren "Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End
Second Tip:
1. Make a folder on the desktop and name it as "folder"
2. Then, open notepad and write ren folder folder. {21EC2020-3AEA-1069-A2DD-08002B30309D} and now (Notepad Menu) File>save as.
3. In the 'save as' name it as lock.bat and click Save (Save it on Desktop)
4. Now, again open notepad again and write ren folder. {21EC2020-3AEA-1069-A2DD-08002B30309D} folder and now (Notepad Menu) File>save as.
5. In the 'save as' name it as key.bat and click Save (Save it on Desktop)
6. Now, double click lock.bat to lock the folder and now if you open your folder, control panel will open up
7. Now, double click key.bat to open the folder and now if you open your folder, you can access your data inside the folder again
8. Lock your folder and hide the key.bat somewhere else on your hard disk
9. Whenever you want to open your folder just paste the key.bat on desktop and open your folder using it
Comments