Lock Folders with Password and Hide it! Privacy Comes First [Without any software]

1) Open your notepad in your Windows PC.

2) Copy the below code completely in your notepad.
                   Coding:
cls
@ECHO OFF
title icomdroid.blogspot.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo ------------------------------------------
echo Lock your folder with password! For More visit: icomdroid.blogspot.com
echo -------------------------------------------
echo Are you sure to lock this 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 MyFolder "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 Vist icomdroid.blogspot.com for more tips and tricks
echo ----------------------------------------------
echo Enter password to Unlock Your Secure Folder
set/p "pass=>"
if NOT %pass%== icomdroid goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully by icomdroid.blogspot.com
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End

3) Now save this file as any filename.bat .bat extension is must without that extension this method will not work.
You can give whatever file name you wanted.
4) After saving this file open it and a new folder will be created called MyFolder.
Now take all your personal folders, documents,pictures, videos whatever you wanted to lock and move them in to MyFolder.
5) Again double click on filename.bat >>
Then you will see a command prompt . Then press Y to lock your folder and protect folders with password
6) To unlock the folder again double click on the filename.bat you will be asked to enter your password. The default password will be icomdroid. to lock files

HOW TO CHANGE DEFAULT PASSWORD?

If you want to change your password replace icomdroid with your password.

Comments