Thursday, June 03, 2010

Lock Folder Without Any Software

Copy The Following Code:cls
@ECHO OFF
title Folder Locker
if EXIST recyclebin.{645FF040-5081-101B-9F08-00AA002F954E} 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 recyclebin.{645FF040-5081-101B-9F08-00AA002F954E}
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==type your password here goto FAIL
ren recyclebin.{645FF040-5081-101B-9F08-00AA002F954E} Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End

  1. Now paste it in notepad.
  2. Change the "type your password here" with your password (Marked as bold in the above posted matter).
  3. Save it as batch file(with extension .bat).Any name will do.
  4. Now you see a batch file. Double click it to create a folder locker.
  5. A new folder named Locker would be formed at the same location.
  6. Now brings all the files you want to hide in the locker folder.
  7. Now double click the batch file to lock the folder namely Locker.
  8. If you want to unlock your files,double click the batch file again and you would be prompted for password.Enter the password and enjoy access to the folder.

No comments:

Explaining DNS Concepts - DNS Servers-DNS Queries-DNS Records

3 types of DNS queries— recursive, iterative, and non-recursive 3 types of DNS servers— DNS Resolver, DNS Root Server and Authoritative Name...