Sunday, December 18, 2011

Notepad Trick to Hide or Unhide any folder with files without any application

Sunday, December 18, 2011
Have you anywhere caught in a situation when you have some personal or confidential files stored in a pc and it was got leaked to someone as he/she also has an access to same pc.. then I think you must be weird and felt yourself helpless as if there any software available which can do the trick to hide your personal folder, though they are but not everyone is willing to buy and use them and in such a situation there simple trick that can solve your problem what you have to do is copy the below code and paste it with in the notepad and save it with name but with .bat extension


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%==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

Now you have created the file and saved it where you wish and double click it, doing so will create a folder with the name Locker. That's it, now store your all files with in the newly created folder and once you finished double click over the .bat file you have created earlier to lock the folder. So once again click on the same file to create a password to protect the folder. Now keep that password at any safe place and let's forget about anyone can get with your files to the next future...

Isn't this trick very useful then why don't you subscribe to the daily newsletter from the feedburner subscription link to get such tips direct to your mailbox...
 
◄Design by Software tricks and Hacking