How To Create A Password Protected Folder Using Notepad:
Hey guy! Do you have any private files to hide from your brother or sister who using your laptop? If yes, In this tutorial we will show you a cool notepad trick on how to lock folder or create a password protected folder using notepad and CMD. It's very simple and easy to do it, All you need is notepad and a batch file
People using notepad to save their information but many of them don't know there are many things to do with notepad.
After you learn how to create a password protected folder, You can hide any files what you want in that folder. You can use this trick to lock folder or create a password protected folder by yourself without using any extra software. It can protect your private files from being view and delete by people who using your laptop. So let move into the tutorial.
How To Create A Password Protected Folder Using Notepad
To lock folder or create a password protected folder you will need a Notepad and CMD. So let get start.Step 1 : Right click on Desktop >>> New >>> Text Document
Step 2 : Copy the code down below and paste to the notepad
cls
@ECHO OFF
title Locker by www.biggtrixs.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? Type Y for Yes, Type N for No
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%== www.Biggtrixs.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
Step 3 : Replace www.Biggtrixs.blogspot.com with your password
Step 4 : Click on File and then click on Save as
Step 5 : Change Save as type to All Files and save the files as Locker.bat
You have created the locker batch file, After open it and you will see one folder created, Then just put your files you want to lock in that folder then open the Locker.bat again and the files will be invisible.
Note : To unlock the files you have to open Locker.bat again and enter your password.
0 comments:
Post a Comment