You can create your own folder lock in simple method without using software.
Just copy the below content in a notepad and save as lock.bat and click the "lock.bat",
you can see a file in the name of "Locker" in tat u can put ur secret files in it and then again
click the "lock.bat"
Are you sure u want to Lock the folder(Y/N)
> (put "Y" for lock)
Enter password to Unlock folder
>(enter the password) "passwd"
(U CAN CHANGE THE PASSWORD AND DELETE THE lock.bat FOR SAFETY.IF WANT THE FILE BACK COPY THE lock.bat and execute)
ADVANTAGES
1)IF YOU LOCK THE FILE NO ONE CAN VIEW THE FILE IN SEARCH option ALSO.
cls
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the folder(Y/N)
set/p "echo=>"
if %echo%==Y goto LOCK
if %echo%==y goto LOCK
if %echo%==n goto END
if %echo%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker "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 folder
set/p "pass=>"
if NOT %pass%==passwd goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End
Download the above program in BAT format
1 comment:
this is nice wow its working
Post a Comment