Tuesday, 18 November 2014

Create password protected folder without any software

Posted by Pushkar
Hello to all,
Today in this article we will learn to make a password protected folder. This trick is very useful in a situation where you don’t want to install a third-party software just for protecting your data because you can protect your data even without the help of any software. Also in a situation where some other person also know your computer’s password. So it is needed to make sure the safety of all your sensitive or personal data for preventing other user to get access to them.
Step 1:- Open the Notepad where you have to your script code.
Step 2:- copy the following code and paste it into your notepad.
cls
@ECHO OFF
title Private Folder
if EXIST “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” goto UNLOCK
if NOT EXIST Private goto makeFolder
:CONFIRM
echo ———————————————————–
echo ================== www.techgeekers.com ==================
echo ———————————————————–
echo Are you sure you want to lock the folder(Y/N)
echo Press (Y) for Yes and Press (N) for No.
echo ———————————————————–
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 Private “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
attrib +h +s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
goto End
:UNLOCK
visit for more
http://techgeekers.com/wordpress/create-password-protected-folder-without-software/

0 comments:

Post a Comment