728x90 AdSpace

Latest News

Sports

Education

Business

Slider

Powered by Blogger.

Movies

Games

Travel

Fashion

News

Archive

Games

Music

Friday 13 September 2013

How to lock a folder without any software (Batch Programming)

Locker Code:
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 Enter password to lock folder or for cancel press N
set/p "cho=>"
if %cho%==XXXX 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%==XXXX 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

  1. Copy this Code into notepad and replace the XXXX with your password.
  2. Save it with .bat extension(for eg: lock.bat).
  3. Copy the Batch file to any folder.
  4. Now double click the Batch file, It will ask you to enter the Password. Enter the password.
  5. Now you can see the Lock folder is created.
  6. Place your files into lock folder which you want to protect.
  7. Again double click the Batch file, it will ask you enter the password. Enter the password.
  8. Now the folder will be Locked.
  9. To unlock again double click the Batch file,enter the password.
  10. You can see the Lock folder.

It is very cool to use.
- See more at: http://www.breakthesecurity.com/2010/12/how-to-lock-folder-without-any-software.html#more
  • Blogger Comments
  • Facebook Comments

0 comments:

Post a Comment

Item Reviewed: How to lock a folder without any software (Batch Programming) Description: Rating: 5 Reviewed By: Unknown
Scroll to Top