Showing posts with label hiding. Show all posts
Showing posts with label hiding. Show all posts

Monday, July 26, 2010

Lock a Folder Without using a software

Most of us often thought about hiding a personal files and personal information,crucial data from others.I already presented you the idea of hiding,encrypting files in a pic now i'll let u know how to lock a folder without any software.
So lets start the Trick
1)copy the below code to a notepad
 __________________________________________________________________________________
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
echo ......................................................
echo Are you sure you 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
echo ......................................................
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
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End
___________________________________________________________________________________
2) set the desired password  by placing it in the position of "type password here in code"..(You will find “type your password here” in that code replace with the desired password )

3)save it as Locker.bat

4) now when  you double click the Locker.bat a folder called locker is created automatically there itself..
Place the desired files which you want to hide in that folder .


5)next run Locker.bat again this asks to lock the folder click yes (y)

 6)your folder then disappears gets inside the locker ...when ever u want to recover files just double click Locker.bat
it asks for a password ,enter that and access ur data ..


hope u like it..
comment me if u are impressed .

Wednesday, July 7, 2010

Hiding files in a pic

I guess most of us might often thought about hiding files . Here is an interesting way to encrypt files in a pic. Hope you like it. For this you don't need extra software or have to be a computer geek. You just need a simple software winrar which is avialable anywhere .

1)make a folder and place a pic and the file you want to hide.

2)now make the file a new rar file of the same name by right clicking file and then the option add to archive(for this you first need to install winrar).

3)open command .(start->run->cmd)

4)now go to the desired folder where the files are present.

5)now type a command

copy /b picname.jpg + filename.rar newpic.jpg

after this you get a msg files copied

6)you can now delete the file and file.rar and pic.

7)a new pic consists of the files you want to hide to get those right click on pic and click option open with winrar

is'nt it interesting.:)