Skip to main content

How to hide Files in Secret Folder using Notepad

 You can easily lock any folder on your Windows computer with a simple Notepad hack. By creating a batch file, you can hide a folder and require a password be entered before it becomes visible and accessible. This is a great tool for locking sensitive information, like pictures, financial statements, and a lot more.


This trick will work on just about any version of the operating system, including Windows 10, Windows 7, Windows XP, Windows 98, and so on.


Step1:Open Notepad

Start by opening Notepad, either from search, the Start Menu, or simply right-click inside a folder, then choose New -> Text Document.


Step2:Add Code to Document

Now just copy the text below and paste it into your document.


cls

@ECHO OFF

title adityanigamtech

if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK

if NOT EXIST MyFolder goto MDMyFolder

:CONFIRM

echo Do you want 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 the password to Unlock Your Folder

set/p "pass=>"

if NOT %pass%==adityanigamtech 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:3Edit Folder  Password

With the text pasted in, you can adjust the locked folder's  password used to unlock it. The default  password is "adityanigamtech"

You can change password By replacing the word adityanigamtech to anything password you like


Step4:Save Batch File

Now save as the file as whatever name you'd like, but make sure the name ends in ".bat" and that you select "All files" in the drop-down box when saving. Also, if you opened Notepad directly rather than using the right-click, be sure to adjust your save location accordingly.



Step5:Create Folder

Now double-click on the batch file you just created . You'll notice a new folder come up.


At this point, you can copy your personal file you want to hide and paste it new folder named "Private". Don't worry, you can always add to remove files from it later.

Step6:Lock the Folder

Once you're ready to lock the folder, simply double-click on the .bat file, then choose 'y' on the window that pops up and hit Enter.

You'll notice that your folder has now disappeared.

Step7:Access Your Hidden & Locked Folder

Now whenever you need access to your folder, just double-click on the batch file, input your password, and hit Enter.



To re-lock (and hide) the folder, just hit the batch file again. And remember, you can name the batch file and folder whatever you like, you feel free to make sure of this trick in multiple locations on your Windows machine.



If You want To see the video tutorial Click Below Link






Comments

Popular posts from this blog

Best app for rooting

  Top 10 Best Rooting Apps for Android If you want to learn what is rooting?advantages and disadvantages of rooting click here 1. Kingo Root Kingo Root app is perhaps the most convenient program for getting root access on an android device for free. The Rooting app is the best to root apps for Android with both PC and APK versions with an easy interface. You can easily acquire root access without any technical assistance. More importantly, this root master provides the fastest and most convenient Android rooting experience. You don’t have to do much just open the rooting app and it will detect your device and root it. You will get all the root access on your device with it. Even if the rooting fails the probability of risking the phone is very low as the application only executes some codes which modify the root files. 2. SuperSU Rooting App SuperSU is one of the longest-running rooting apps for managing root privileges, and it’s even shipped with some ROMs as a result. T...

What iS Rooting ? Advantage And disadvantage of Rootings?

What iS Rooting ? Advantage And disadvantage of Rootings?  What Is Rooting? Rooting   is the process of allowing users of   smartphones ,   tablets   and other devices running the   Android   mobile operating system   to attain   privileged control   (known as   root access ) over various Android subsystems. As Android uses the   Linux kernel , rooting an Android device gives similar access to administrative ( superuser ) permissions as on   Linux   or any other   Unix-like   operating system such as   FreeBSD   or   macOS . Rooting is often performed with the goal of overcoming limitations that carriers and hardware manufacturers put on some devices. Thus, rooting gives the ability (or permission) to alter or replace system applications and settings, run specialized applications ("apps") that require administrator-level permissions, or perform other operations that are oth...