Create your own Folder locking program using notepad. Keep your files password protected in a locker.
Step 1:
open notepad. (goto run "windows+R", then type "notepad")Step 2:
Copy paste the following program.
cls
@ECHO OFF
title Taknika.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this folder? (Yes/No)
set/p "cho=>"
if %cho%==Yes goto LOCK
if %cho%==yes goto LOCK
if %cho%==no goto END
if %cho%==No goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren MyFolder "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock Your Secret Folder
set/p "pass=>"
if NOT %pass%== taknika goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End
Step 3:
Save the file in in .bat domain ( press "ctrl+S" and type "FolderLocker.bat")Step 4:
Step 5:
Step 6:
To change the default password, edit the part of the code given in "RED" and enter your own password.Note:
1) The overall usability of this trick can be improved by deleting the batch file after the Secret Folder becomes invisible and re-creating it when you wish to access your folder again. The Simpler the program the easier it can be hacked so be sure any software engineer having a little knowledge of hacking can hack your program.2) Do not edit the other part of the program except the red one ,otherwise it may cause bug in the program and the program will not work.
No comments:
Post a Comment