lock personal folder without any software is a very cool trick.Everyone want to hider their personal folder from otherers due to some reason like an employee their office documents or a man his Girl Friend pics from his wife :P.
Anyways Today I am going to teach you this great trick without any software all we are doing is manually.
Copy and paste the following codes in Notepad and Save it as lock.bat File.
Now click on the save as file a new folder will be created paste you personal data into it again double click on lock.bat file and press y key now the folder 'll be hidden. You have done let's check the process
Now double click on the batch file and enter this password cyberdefend.blogspot.com and press Enter. your Folder visiable again Great Enjoy This Method and share this post with your friends.
You can also change the code by replacing password in given bellow code.
Here is the code
cls
@ECHO OFF
title computer-tricks-corner.blogspot.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
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 Enter password to Unlock Your Secure Folder
set/p "pass=>"
if NOT %pass%== cyberdefend.blogspot.com 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
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End
