Tuesday, July 29, 2014

Protect Your Files With Password Without Using Any Software

Posted by Chaithanya
Password Protect Any Folder Without Any Software

In your PC you will be maintaining many files. In that some are very important to you and you want to protect it from others. For this you will be using some of software's. But there is a way in your computer in which you can maintain password for your file folders. Here we discuss some of the points where you can make your passwords in your PC without using any software's.

1. Open your notepad and copy the code below in it.
cls
@ECHO OFF
title alltechcorner.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? (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 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 Secure Folder
set/p "pass=>"
if NOT %pass%== alltechcorner 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

2. Save the notepad file as lock.bat (.bat is must)
3. Now double click on lock.bat and new folder will be created with name MyFolder
4. Copy all your data you want to protect and place it in the New folder.
5. Now double click on lock.bat and when command prompt appears "Type Y" and press enter.
6. Now Myfolder will be hidden from your view, to access that folder double click on lock.bat
7. It will ask for password and enter it. (Here default password is alltechcorner)

To change the password replace "alltechcorner" with your new password.

0 comments:

Post a Comment