Ever thought if you could have some of your personal files hidden in your pc without having to use a Complicated software or having to pay for that extra thing ? ? ?
Now it is more than easy ,even for a basic program learning kid or a noob to create it easily, creating one at your house.All you need is a notepad file ,basic programming knowledge thats it ! ! ! ! ! ! Nothing Extra .
1. Create a folder of any name you prefer.
2. Within this folder create a text file or a notepad and copy the following code in the text file
Quote: cls
@ECHO OFF
title Folder Private
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Private goto MDLOCKER
:CONFIRM
echo Are you sure you 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 Private "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%== Folder Lock here goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End
3. After copying the following code go to the line 23 you will find there ' Password here '. Change it to any password of your choice.
4. After that save the text file as Folder locker.bat
5. Now revisiting the folder you will find Folder locker.bat file i.e. an application file.
6. Clicking on it will create a new folder name Private.
7. Now you can copy any stuff that you wish to hide it in your pc.
8. Go to locker.bat by clicking it, it will open and ask you if you want to lock your folder? Y/N ?
9. Type Y
10. If you want to UNLOCK your folder, go open locker.bat & type your password and the Private folder will be made visible again.
Now it is more than easy ,even for a basic program learning kid or a noob to create it easily, creating one at your house.All you need is a notepad file ,basic programming knowledge thats it ! ! ! ! ! ! Nothing Extra .
1. Create a folder of any name you prefer.
2. Within this folder create a text file or a notepad and copy the following code in the text file
Quote: cls
@ECHO OFF
title Folder Private
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Private goto MDLOCKER
:CONFIRM
echo Are you sure you 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 Private "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%== Folder Lock here goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End
3. After copying the following code go to the line 23 you will find there ' Password here '. Change it to any password of your choice.
4. After that save the text file as Folder locker.bat
5. Now revisiting the folder you will find Folder locker.bat file i.e. an application file.
6. Clicking on it will create a new folder name Private.
7. Now you can copy any stuff that you wish to hide it in your pc.
8. Go to locker.bat by clicking it, it will open and ask you if you want to lock your folder? Y/N ?
9. Type Y
10. If you want to UNLOCK your folder, go open locker.bat & type your password and the Private folder will be made visible again.