From Indonesian Blogger, I have forgotten his link. I'm sorry, brother... Link back to me, and I will inform that you're the original owner...
Have you thought to save your personal files so no body can access them? Possibly have, but how to do it? There are some programs outside there offering these services, but you have to pay to get these services.
Can we realize our desire without those programs? Yes, you can. Follow these steps:
- Copy cedes bellow into notepad and then save them using *.bat extension. [e.g.: private.bat]. Change the word “PASSWORD" in this codes with your personal password [case sensitive]
- Put the file anywhere in your hardisk, e.g.: d:
- Double click “private.bat” file, and new folder named “Private” will be created in d:\private\
- Copy any files that will be protected into the folder [Private]
- Again, doucle click “private.bat” file to make folder “Private” hidden. Press “y” to hide the folder
- You can move “private.bat” file to prevent other user open folder “Private”
- To open folder “Private”, double click “private.bat” file and type your personal password
@ECHO OFF
@ECHO Membuat Folder Pribadi
@ECHO Oleh Melvin Hendrik Tambunan
title Folder Private
if EXIST "Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}" goto UNLOCK
if NOT EXIST Private goto MDLOCKER
:CONFIRM
echo Do 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 Incorrect choice
goto CONFIRM
:LOCK
ren Private "Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}"
attrib +h +s "Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}"
echo Folder locked
PAUSE
goto End
:UNLOCK
echo Enter password to unlock
set/p "pass=>"
if NOT %pass%== PASSWORD goto FAIL
attrib -h -s "Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}"
ren "Control Panel.{21EC2020- 3AEA-1069- A2DD-08002B30309 D}" Private
echo Folder opened
PAUSE
goto End
:FAIL
echo Incorrect password
PAUSE
goto end
:MDLOCKER
md Private
echo Folder Private have been created
PAUSE
goto End
:End
That’s all from me, I hope will be usefull for you...
Just visiting, just know your blog. thanks for sharing
ReplyDeleteMelvin Hendrik Tambunan (https://www.facebook.com/melvinht)