Locking Folder in MS XP

To make your folder in private u could be using many software in making them private. But sometime it could be very dangerous when you format your drive which contains the files of the software that could make your secret files into risk.... While this research since mostly computer here are running Windows XP i have to keep my file in private.

Why download a software? When you have it for free. Here is the simplest and the best solution to make your folder private.
  • Copy the code below in a notepad
  • on notepad change the text "type your password here" with password you want.
  • Save this file as locker.bat
  • Now clink the file Locker.bat
  • You will see that new folder name "Locker" will appear.
  • Put your File into it.
  • Again click on the Locker.bat say yes to continue and you will see that your folder go hidden.
  • For reappear click again the Locker.bat enter password and your folder will reappear.

CODE:::::

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 You Want to 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}"
echo Folder Locked
goto End
:UNLOCK
echo Enter Password to Unlock Folder
set/p "pass=>"
if NOT %pass%==
type your password here 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


ENJOY USING THIS CODE>>>

Comments