Cara Mengunci Folder Tanpa Menggunakan Software
Hi,Semuanya….
Sekarang saya akan mengajarkan cara mengunci folder dengan password tanpa menggunakan program ikuti langkah – langkah berikut :
1. Copy code di bawah ke notepad
@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%==“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
2. Save dengan format extensi .bat
3. Double klik file yang telah di save tersebut
4. Akan muncul folder bernama Lock
5. Masukan file2x yang di ingginkan ke dalam folder Lock
6. Bila ingin mengembalikan file yang sudah di lock,double klik lagi lock.bat dan masukan password anda !!
7. Selesai
Gak susah kan ?? ya udah segini ajach yach….

Mr WordPress said,
August 23, 2008 at 10:38 am
Hi, this is a comment.
To delete a comment, just log in, and view the posts’ comments, there you will have the option to edit or delete them.