Home » Computer

How to Hide File and Folder Without the Aplication Software

16 July 2009 No Comment

In fact, there are many applications that we use to hide files or important folder for not responsible person. However, most of it is paid. But, if you have no money to buy it you can use notepad to hide your file.

the steps are:
1. Copy the code below to notepad and then save as rahasia.bat.
@ECHO OFF
if EXIST “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo 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 Locker “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
attrib +h +s “Control panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
goto End
:UNLOCK
echo Insert your password
set/p “pass=”
if NOT %pass%== passwordku goto FAIL
attrib -h -s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
ren “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” Locker
goto End
:FAIL
goto end
:MDLOCKER
md Locker
goto End
:End

Try to see “if NOT%pass%==passwordku goto FAIL”, change the word passwordku with password do you want.
2. Run file rahasia.bat with the double click. After that folder will appear folder called locker.
3. Enter the file or folder that we want to hide into the folder locker
4. Double click the file rahasia.bat again
5. Press Y for OK or T to Cancel the locker folder will be hidden.

Well, after we successfully hide file or folder. Now, try to show again that file or folder.

To unhide the file or folder that had been hidden is:

1. Double click rahasia.bat
2. Enter the password

Now we try to open folder locker and we will find file that had been hidden.

Related posts:

  1. How to Hide Driver on Windows Explorer
  2. How to Protect File From Copy-Paste, From Computer to Flashdisk (USB)
  3. Collection shortcut windows
  4. Excess SmadAV Pro compared SmadAV free?

Comments are closed.