-File Vault (Hider) using ONLY Notepad-
Click Here to Download the Files.
I have a Tutorial video in Youtube. Check that Out here.
Okay Everybody this is what going on in this tutorial I'm gonna teach you how to create a File Vault or a File Hider using only a notepad.And of cause it is completely invisible you can't access files by selecting show hidden files option. It doesn't work like that.
And you can only hide files no folder, Okay Let's get to it.
This what happens when you run the application,
I have a Tutorial video in Youtube. Check that Out here.
Okay Everybody this is what going on in this tutorial I'm gonna teach you how to create a File Vault or a File Hider using only a notepad.And of cause it is completely invisible you can't access files by selecting show hidden files option. It doesn't work like that.
And you can only hide files no folder, Okay Let's get to it.
This what happens when you run the application,
- First it checks for a folder.
- if folder exists it asks you what to do with files inside. Either you wanna hide or expose files.
- Okay If you press Y/y here it will hide all the files in that specified folder. If you press N/n it will expose all files.
- Then the application closes.
- If folder doesn't exist it asks you that you wanna create folder in that specified directory or not.
- If you press Y/y it will create a folder with the specified name you've given in the application when you create it and It will ask if you want to hide or expose files. If you press N/n application closes.
- And that's all.
What to do...
- create a text file
- make it a .bat type by save as option
- Write the below code inside the .bat file.
Code ->>>
Okay here is the full code I will explain Function by function below.
@ECHO OFF
title File Hell 1.2v
color 0a
if EXIST "File Hell" goto WalkIn
if NOT EXIST "File Hell" goto MakeDir
:CONFIRM
echo .
echo Are you sure want to Obsolete the Files ?(Y/N)
set/p "cho=>"
if %cho%==Y goto HELL
if %cho%==y goto HELL
if %cho%==N goto RETURN
if %cho%==n goto RETURN
echo .
echo Invalid Choice.Please enter Y/N as you wish
goto CONFIRM
:HELL
attrib +h +s
echo Your Files are in hell but not folders
goto End
:RETURN
attrib -h -s
echo Your Files has been Restored
goto End
:WalkIn
cd File Hell
goto CONFIRM
:MakeDir
echo -
echo You have no folder called 'File Hell' would you like to create one here?(Y/N)
set/p "ans=>"
if %ans%==y goto CREATE
if %ans%==Y goto CREATE
if %ans%==n goto End
if %ans%==N goto End
echo -
echo Invalid Choice.Please enter Y/N as you wish.
goto MakeDir
:CREATE
md "File Hell"
echo -
echo File Hell Folder has been created Successfully.
echo -
goto WalkIn
:End
title File Hell 1.2v
color 0a
if EXIST "File Hell" goto WalkIn
if NOT EXIST "File Hell" goto MakeDir
:CONFIRM
echo .
echo Are you sure want to Obsolete the Files ?(Y/N)
set/p "cho=>"
if %cho%==Y goto HELL
if %cho%==y goto HELL
if %cho%==N goto RETURN
if %cho%==n goto RETURN
echo .
echo Invalid Choice.Please enter Y/N as you wish
goto CONFIRM
:HELL
attrib +h +s
echo Your Files are in hell but not folders
goto End
:RETURN
attrib -h -s
echo Your Files has been Restored
goto End
:WalkIn
cd File Hell
goto CONFIRM
:MakeDir
echo -
echo You have no folder called 'File Hell' would you like to create one here?(Y/N)
set/p "ans=>"
if %ans%==y goto CREATE
if %ans%==Y goto CREATE
if %ans%==n goto End
if %ans%==N goto End
echo -
echo Invalid Choice.Please enter Y/N as you wish.
goto MakeDir
:CREATE
md "File Hell"
echo -
echo File Hell Folder has been created Successfully.
echo -
goto WalkIn
:End
Functions ->>>
@ECHO OFF
title File Hell 1.2v
color 0a
if EXIST "File Hell" goto WalkIn
if NOT EXIST "File Hell" goto MakeDir
color 0a
if EXIST "File Hell" goto WalkIn
if NOT EXIST "File Hell" goto MakeDir
- Okay first of all this is not a function. This is the beginning.In here we start by turning off the echo and giving a cool title and a color(hacker boy):D
- After that we are checking that the folder(File Hell) exists, If it exists we say go to the "WalkIn" function or If the file doesn't exist go to the function "MakeDir".
:CONFIRM
echo .
echo Are you sure want to Obsolete the Files ?(Y/N)
set/p "cho=>"
if %cho%==Y goto HELL
if %cho%==y goto HELL
if %cho%==N goto RETURN
if %cho%==n goto RETURN
echo .
echo .
echo Invalid Choice.Please enter Y/N as you wish
goto CONFIRM
:HELL
- This is called the Confirm Function.In here we asks the user to input a letter as the answer in orderr to hide or expose the files. If the given answer is neither Y nor N then it redirects the user back tho the same question Saying "Invalid Choice.Please enter Y/N as you wish".
- If user gave the answer as Y/y it goes to the function "HELL", If user gave N/n it goes to the function "RETURN".
:HELL
attrib +h +s
echo Your Files are in hell but not folders
goto End
- This is the HELL function or the file hide function. When the second line is executed it gives all the attributes in side the folder hidden file(+h) and system file(+s) values.
- After that It prints a little message and exits by going to the End function.
:RETURN
attrib -h -s
echo Your Files has been Restored
goto End
- This is the RETURN function this exposes the file that you hide before by removing S and H values given before.
- After that It prints a little message and exits by going to the End function.
:WalkIn
cd File Hell
goto CONFIRM
- This is the WalkIn Fuction and what it does is , It takes us into the folder directory by changing directory to the File Hell .
- And then It sends us to the CONFIRM function.
:MakeDir
echo -
echo You have no folder called 'File Hell' would you like to create one here?(Y/N)
set/p "ans=>"
if %ans%==y goto CREATE
if %ans%==Y goto CREATE
if %ans%==n goto End
if %ans%==N goto End
echo -
echo Invalid Choice.Please enter Y/N as you wish.
goto MakeDir
- This is the MakeDir function if you do not have a File Hell folder in your current directory, This is the fuction that creates it for you.
- First it asks you that you want to create a folder in this current directory
- If you input Y/y it will send you to the CREATE function or If you input N/n It will send you to the end function and the application will close.
- After the application is closed you change the place by changing the application location in your computer.
:CREATE
md "File Hell"
echo -
echo File Hell Folder has been created Successfully.
echo -
goto WalkIn
:End
click here
goto WalkIn
- This is the CREATE function .
- This creates the File Hell Folder if it does not exists.
- After the folder is created it sends us to the WalkIn function.
:End
- This closes the application.
What is really cool...
- Actually you can run a .bat file directly in windows.
- But If you would like to make it more professional find a .bat to .exe converter software and give it a nice Icon and make it more cool.
Download
Advanced Bat To Exe Converter4.11click here



0 Comments