Thursday 19 June 2014

How to Hide and Lock Folders Without any Software


1)        Copy below code and open notepad

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%==passwordhere 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

2)        Paste the code in notepad

3)        Type your password in the place of “passwordhere” in the above code.

4)        Now save file as Testing.bat (“.bat” extension is must)

5)    Click on the file "testing.bat" where you saved. It will ask to enter the password. Type your password and press enter.

6)        The folder named "Locker" is opened.

7)        Put your data in the “Locker” folder.
8)      Now again click on the “Testing.bat” Now it will ask you do you want to lock the folder or not? Press “y” and then press “Enter”.

9)      Now your folder is hidden whenever you want to open just click on file and type password.

See video tutorial..... Please like, share and subscribe 


How to Copy Multiple Texts & Objects and Paste Them at Once

  How to Copy Multiple Texts & Objects and Paste Them at Once Copying and pasting is a common task, but the traditional clipboard can ...