Welcome to Mobilarian Forum - Official Symbianize.

Join us now to get access to all our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, and so, so much more. It's also quick and totally free, so what are you waiting for?

[TUT]How to lock a folder with a password without a software+BATCH FILE COMPILER

PISTI 0

PISTI

Squaddie
Ardent
Joined
Jul 1, 2014
Messages
395
Reaction score
371
Points
28
grants
₲8,806
11 years of service
Let me show you how to lock a folder without a software!

Steps:

1- make a new folder ( name it as you like )

2- inside this folder make a ( TXT ) file & copy inside it this (the entire thing)

Code:
: 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%== 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
OR

kung gusto niyong safest way. gamitan niyo ng batch file compiler instead of using the notepad application.


3- After u copy the Commanding go to line 23 (or try using shortcut- CTRL+F and type password to locate the line) u will find this word : password here (Change it with any password u like.) is :

eg: if NOT %pass%== narnia1234 goto FAIL
//so ur password here becomes narnia1234 .//

4- After that go to save as & name this file as "locker.bat "

5- Now back to the folder & u will find a ( LOCKER ) commanding.
(locker.exe)

6- Double Click on it & u will find a new folder (Private )

7- Ok ,, now copy what u want in this "private Folder" & after that come out of the folder, and Double click on locker again. It will open and ask if you want to lock your folder? Y/N ?

8- Type Y. your private folder will dissapear.

9- If you want to UNLOCK your folder ,go to (locker) & type your pass and you will see your private folder.

it not only hides the fodler, but incase, u unhide all files... and try opening it without entering password, itl take u to the control panel...

kung gusto niyong safest way. gamitan niyo ng batch file compiler instead of using the notepad
 
host 6.1K

host

/dev/null
Staff member
Chief Executive Officer
Joined
Jun 22, 2014
Messages
3,282
Solutions
1
Reaction score
67,240
Points
113
Website
katz.to
grants
₲2,507,432
11 years of service
xfausty143 said:
Thank you sir. Keep on Sharing. Copied. :)
copy paste reply is considered spamming. BANNED for 2 weeks
 
Y 0

yujn

Transcendent
Member
Access
Joined
Oct 10, 2014
Messages
44
Reaction score
0
Points
6
grants
₲516
11 years of service
pag ng search mo po ba sa computer ung file..,d magpapakita ung file?
 
ayayatinka 0

ayayatinka

Squaddie
Member
Access
Joined
Nov 2, 2014
Messages
253
Reaction score
39
Points
18
grants
₲2,210
10 years of service
yujn said:
pag ng search mo po ba sa computer ung file..,d magpapakita ung file?

makikita po once na isearch mo ang file. pero kung hahanapin mo lang manually na di gumagamit ng search command eh di po makikita yang files.
 
S 0

susunods

Transcendent
BANNED
Member
Access
Joined
May 3, 2023
Messages
45
Reaction score
4
Points
8
grants
₲152
2 years of service
ece student here sobrang helpful neto
 
Top Bottom