Showing posts with label tips folder lock. Show all posts
Showing posts with label tips folder lock. Show all posts

Password Protect Files and Folders with Free Folder Lock Software

|0 comments
Many a times when you keeps secret or confidential files on your computer or laptop then you may be worried about his security. Now, you no need to be Worried about the important and confidential files in your computer. Whatever is the partition type whether NTFS or FAT32 of Windows, you can easily protect your sensitive files and folders with a secure password.
There are many tools available on the internet to secure the files but most of them are trial versions or some lengthy to use. We have got a free software called Folder Lock which can easily safeguard your sensitive or private files and folders which you don’t want to share with the other users of the computer. Folder Lock supports Windows 7, Vista and XP (including their 32 and 64 bit variants).

Folder Lock is an excellent tool that can either encrypt or lock the data with a password chosen by you.

Some Features of Folder Lock:

•    Easy to use.
•    Uses 256-bit AES encryption which is difficult to crack.
•    File Lock, Folder Lock, Drive Lock, File Encryption and Folder Encryption.
•   What’s more is that you can easily password protect USB Drive or Lock CDs and DVDs without the need to install it on the other end.
•    Backup, Move, Email or transfer your password protected Lockers anywhere you want.
•    Use the tool in stealth mode (useful when hiding the tool from other users of the computer).

Just download this software and play with  options before protecting your secret stuffs.

Download Folder Lock Free

How To Lock Folder Without Software

|0 comments
How To Lock Folder Without Software
There many software to lock folder and drive but if you can not able to install software there are many methods to lock folder one of i provide you its good and easy to use hope you like lats start
folder locked How To Lock Folder Without Software
  • Open Notepad [Start--Run--Type here Notepad and hit enter from keyboard].
  • In your Notepad just Copy/Paste the below code :- 

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 "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-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%==type your password here 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

    • In the above batch code the password has been set as kamlesh. You can change it by editing the following line
    if NOT %pass%==kamlesh goto FAIL
    Now save this notepad file as yourfoldername.bat ,here .bat is extension of your file. For now I am creating kamlesh.bat file.
    • Now a .bat (system) file will be created.

    • Double Click on this .bat file and you will see a Locker Folder at the same location where your .bat file is saved.
    pokit d0cffa36e832b65fe145a6e9360bda83 How To Lock Folder Without Software
    • Double click on that Locker folder and store your personal data in it.
    • After storing all your data in that folder again double click on .bat file and press Y there to Lock the folder and press Enter.

      • Now your Locker will hide and only .bat file will be there.
      • Double Click on this .bat file and give your password (here kamlesh) and hit Enter.
      Thats it. Now every time you want to open your secret folder you have to enter the password. You can update this folder any time and infinite number of times. If any thing wrong then recreate .bat file with same password.


      Second Method :


      Copy and paste the code given below in notepad and 'Save' it as batch file (with extension '.bat'). You can put any name.



      Now you see a batch file. Double click on this batch file to create a folder locker. New folder named 'Locker' would be formed at the same location.



      Now bring all the files you want to hide in the 'Locker' folder. Double click on the batch file to lock the folder namely 'Locker'. If you want to unlock your files,double click the batch file again and you would be prompted for password. Enter the password and access the folder.


      Code :



      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 "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-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%==type your password here 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


      Note : This method works only in Windows XP. In Windows 7 it will hide your folder only. 


      Share