Tuesday 18 December 2012

Hide And password protect your Private Files without Using any software

 LOCK YOUR PRIVATE FILES
When you have any important files or any private file which you don't want to show others the you start searching for softwares which can lock your files with a password but still they can see the files which you have kept in the computer . And for this reason again you use default hiding option of window XP but still the files can be seen .


Using trick you can not only password protect but also you can hide the private folder.
Here starts the trick .
Go to start>All Programs>Accessories>Notepad

open notepad and paste the following 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 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%==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


------------------------------------------------------------------- 
Replace your password here with your own password which you want to keep.

And then save it with anyname.vbs  . Don't forget to write .vbs otherwise this will not work.

and when you open the file a folder name locker will be created , keep your files in the locker folder and again double click on the created file.
That's it .
Share this post if you liked it.

No comments:

Related Posts Plugin for WordPress, Blogger...