Hide Folders

Kuga

New member
Saw this on Carbonite : http://www.carbonite.co.za/f3/hide-folders-30978/ -

Pretty awesome piece of code!

Hi guys

I came across quite a nice piece of code for a .bat file which I use for my backups on my flash drive. I basically makes a folder called 'Private' which hides when you 'lock' it. No, its nothing to prevent hackers from getting to your files but if I loose my flash drive and the average Joe finds it they won't know what to do and won't be able to get to your files.

Anyway, thought I would share it with everyone here.
To get it to work, save it as a .bat file and replace the [INSERT PASSWORD HERE] with the password that you would like to use (remove the square brackets).

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%== [INSERT PASSWORD 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
:End
 
Not very secure method.



Wow that was very haxoring of me using dir /a. Just needs a attrib -h -s to zomg unlock it.
 
Last edited:
Back
Top