Showing posts with label files and folders. Show all posts
Showing posts with label files and folders. Show all posts

Monday, 31 October 2011

Create a hidden folder manually

This is my third post on how to hide and lock files and folders. Check lock your folder without any software ( it is done using notepad) and hide your files and folder and password protect using free software.

In this post, I am going to share how to create hidden folders in windows OS manually. This is done with the combination of two ideas, creating folder without any name and changing folder icon to blank space.

Step 1.Create the folder.

Step 2. Rename the folder to create nameless folder

Lock your folder without any software

In my previous post, I shared how to hide and password protect using free hide folder software which can be downloaded from here. In this post, I want to share how we can lock and password protect with notepad.

Open Notepad and copy and paste the following lines of code exactly.
cls
:End
@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%==tenraj 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

Hide Your Files and Folders and Password Protect with Free Software

There are many reasons why we should hide or password protect some of the file and folders in our systems. We want to keep certain things secret or we want to hide some of our personal information from our friends and families. If you are parents you may find necessary to hide and password protect some of the files and folders from your children.

There are many ways to hide or password protect our files and folders but here I wanna share about one of  software which is very easy to install and very handy to use.It is free to download. You may also lock your files and folders using notepad.