Here is a damn awesome way to hide and protect your personal folders..
Just copy the following code and past it in a new txt file, change ""PWD" to ur password to open the hidden folder and save as a something.bat file..
This is how it works, double click the .bat file and it will create a folder named "locker".. Put the folders or files u want to hide in it.. double click the .bat file again n press "y".. It will hide the "locker" folder.. When u want to reopen the locker folder just run the .bat file again and give the password, it will open the locker folder..
You dont have to keep the .bat file there with the hidden folder, can move it to anywhere and copy it to the place when needed to open the locker folder.. Juz remember where is ur hidden locker folder is.. Enjoy..!! Cheers..!!
Feel free to ask any questions regarding this..
========================================================
code
========================================================
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 Open with your own risk
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%=="PWD" 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
Just copy the following code and past it in a new txt file, change ""PWD" to ur password to open the hidden folder and save as a something.bat file..
This is how it works, double click the .bat file and it will create a folder named "locker".. Put the folders or files u want to hide in it.. double click the .bat file again n press "y".. It will hide the "locker" folder.. When u want to reopen the locker folder just run the .bat file again and give the password, it will open the locker folder..
You dont have to keep the .bat file there with the hidden folder, can move it to anywhere and copy it to the place when needed to open the locker folder.. Juz remember where is ur hidden locker folder is.. Enjoy..!! Cheers..!!
Feel free to ask any questions regarding this..
========================================================
code
========================================================
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 Open with your own risk
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%=="PWD" 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