Here i will show you how to lock and hide any folder in windows without using any software........

soo firstly open notepad copy this script

cls
@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%==12345 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

save this data as a text file after saving rename this file's extension from .txt to .bat thats it..

now its executable file excute it a new folder will be created named Locker put your confidential data in it just double click on executable file it will ask to lock folder just press Y and hit enter after hitting enter your locker folder will be locked and hidden to unlock the foldet run file again it will ask for password enter password and now locker folder will come again.

default pass-12345 in order to change the password just right click .bat file click on edit and type your desired password at the place of 12345.


Like it on Facebook, Tweet it or share this article on other bookmarking websites.

No comments