| Hide a folder (a better way) Alright doing this method will hide your folder and also lock it.
Copy and paste this into program
cls
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u 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 Locker "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%==password goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End
1. Copy the folder above into notepad (wordpad might work too. I'm unsure)
2. Change the password to what you want it to be on the line if NOT %pass%==password goto FAIL
3.Save the file extension.bat (you can name it whatever you'd like just make sure it's a .bat)
4.Now you will see the .bat file on your screen where you saved it. Go ahead and double click it open and you'll see the folder you have created.
5.Go ahead and put the files in there (In DAK's case this will be his porn)
6.Double click the folder and lock the folder.
7.After you lock it it'll become hidden
8.To have to open it again double click the bat file and type in your password and your in!
__________________
Gypsies are known for stealing; I once had an encounter with one and she stole my heart.
Last edited by Theebomb1080; 07-06-2008 at 12:19 PM.
|