28 September 2010

Creating a Private Folder in Windows Without Using a Software

Sometimes, folder needs to be unseen by other. But how can we create a private folder without a password tool software ? Here are steps for creating a private folder and you can lock the folder with your password (without using a software).

1. Open the Notepad in Windows, copy and paste the code below :


cls
@ECHO OFF
title Folder PrivateFolder
if EXIST “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” goto UNLOCK
if NOT EXIST PrivateFolder goto MDLOCKER
:CONFIRM
echo Do You want to lock Your PrivateFolder ? (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 Select Y or N.
goto CONFIRM
:LOCK
ren PrivateFolder “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
attrib +h +s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
echo PrivateFolder Locked
goto End
:UNLOCK
echo Enter Password
set/p “pass=>”
if NOT %pass%== enterpassword goto FAIL
attrib -h -s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
ren “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” PrivateFolder
echo PrivateFolder Opened
goto End
:FAIL
echo Wrong Password
goto end
:MDLOCKER
md PrivateFolder
echo PrivateFolder successfully created
goto End
:End

2. Change the text of “enterpassword” with the password you want.

3. Save As the file with the name of locking.bat on your desktop

4. Click the locking.bat ( it will generate a folder with he name of “PrivateFolder” )

5. Click the file and select “Y” to lock the folder.

6. To Open the Folder click the file again and enter the password.

Good Luck.

Related Posts from :

0 comments:

Post a Comment