// // Leave a Comment

How to Protect Any Your File or Folder Without Using Any Software ?

Hello Friends, Good Evening . Many times We wants to protect any personal file or Folder in computer any where, so We was used Some Different-different software to Protect these files.

I this tutorial Today I am sharing with you a Great Trick to create a Password protect folder without using any software,using batch file programming. This trick is working for all IOS like Windows XP, 7, 8,etc.


Step1- Open Notepad and Copy Code given below into Notepad.

cls 
@ECHO OFF 
title Trick4Pc.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder 
:CONFIRM 
echo Welcome to Siddharth Sharma's Locker
echo Hey, Thanks for using Siddharth Sharma's Locker
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
MyFolder goto MDMyFolder 
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=>"
echo Thanks you Using Siddharth Sharma's Locker 
if NOT %pass%== 0123 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

Step2:- Save the Notepad Folder As "locker.bat"
            you can choose any name but " .bat"  is must to use.

Step3:- Now double click on locker.bat .., then you will See a folder created name- "MyFolder"


Step4:- Copy Your all data here which wants to you protect.


Step5:- Now re-click "locker.bat" file to loch this folder and you will se a Screen then Type-"Y" and press   
            Enter.

Step6:- Now you are facing this Magic "MyFolder" is hide from your Computer location. to access again click locker.bat file and Put Password- " 01234 "

0 Comments: