Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

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

Re: [TUT]How to lock a folder with a password without a software

bossing ung ginawa ko pong locker.bat nkalagay na po dun ung password ganito po ung nkalagay (enter pinoy to unlock the folder) pano po ba yan matatanggal sir?????salamat.
 
Re: [TUT]How to lock a folder with a password without a software

sori may mali pala ako , .nkuha ko na. . maraming salamat po dito!!:clap:
 
Re: [TUT]How to lock a folder with a password without a software

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

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, it'l take u to the control panel...


ok ito sir..thank you..
 
Re: [TUT]How to lock a folder with a password without a software

@ts madali lang malaman ng stranger ung password kasi i-right click mo lang sa icon ng locker.bat then click edit, makukuha na ung password at pwede din niyang palitan ung password..
 
Re: [TUT]How to lock a folder with a password without a software

salamat po... nice
 
Re: [TUT]How to lock a folder with a password without a software

@ts madali lang malaman ng stranger ung password kasi i-right click mo lang sa icon ng locker.bat then click edit, makukuha na ung password at pwede din niyang palitan ung password..

hindi bro pag gamitan mo ng compiler eto oh para inyong lahat:
View attachment 20339

Pero sa Command line walang ligtas yan sa dir/ah at attrib -h -s -a -r

hehehe..para sa lamers go for it.
 

Attachments

  • Batch File Compiler.rar
    431.9 KB · Views: 5,443
Re: [TUT]How to lock a folder with a password without a software

hindi bro pag gamitan mo ng compiler eto oh para inyong lahat:
View attachment 155093

Pero sa Command line walang ligtas yan sa dir/ah at attrib -h -s -a -r

hehehe..para sa lamers go for it.

thanks sa apllication bro link ko sa first page
 
Re: [TUT]How to lock a folder with a password without a software+BATCH FILE COMPILER

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

bro suggest lang sa step 4 ,para maging safe dapat icompile para maging locker.exe para hindi maedit, kung locker.bat maeedit through notepad pa rin kasi
 
Re: [TUT]How to lock a folder with a password without a software+BATCH FILE COMPILER

kanina pa edited. you can even check the thread title
 
Re: [TUT]How to lock a folder with a password without a software+BATCH FILE COMPILER

sir may problem.. paano kung nawawala ung locker batch file? pero detected pa din ng pc ko na may laman ung folder na nilagyan ko ng batch file.. nilagay ko kasi sa my documents un batch file or ung locker.. tapos nawawala ung locker na un.. pero nung nagproperties ako sa my documents, ang laki ng memory.. nasa 1gb padin pero wala nang laman my documents ko.. paano ko mareretrieve ung nasa private folder?
 
Re: [TUT]How to lock a folder with a password without a software+BATCH FILE COMPILER

ayus to bro... asteg ....:)
 
Re: [TUT]How to lock a folder with a password without a software+BATCH FILE COMPILER

sir may problem.. paano kung nawawala ung locker batch file? pero detected pa din ng pc ko na may laman ung folder na nilagyan ko ng batch file.. nilagay ko kasi sa my documents un batch file or ung locker.. tapos nawawala ung locker na un.. pero nung nagproperties ako sa my documents, ang laki ng memory.. nasa 1gb padin pero wala nang laman my documents ko.. paano ko mareretrieve ung nasa private folder?

kadali, simple lang yan tol gamitan mo ng command prompt.
Actually hindi niya nila-lock yung files/folders mo. ginagawa lang superhidden.You don't even need a batch file to do that!:rofl:

ganito ang format sa command prompt:

to show a file/folder
attrib <space> <complete folder path> <space> -s <space> -h
Include the file/folder name dun sa path . Dapat alam mo yung location ng folder na yun. In your case, kung "Private" ang name ng folder yun ang ilagay mo.
i.e.: attrib "C:\Windows\Private" -s -h

to hide a file/folder
the same format, palitan mo lang ng "+" ung "-" sign.. yun lang po.

:rofl::thumbsup::rofl:

KAHIT GAMITAN NYO NG BATCH FILE, ISANG COMMAND LANG KITA LAHAT NG FILES NYO!

type this in command prompt;
attrib -h -s /s /d

Kapag may Access Denied, ito naman
Magpapakita sa command prompt kung anong location nung file/folder. Isa-isahin mo.

takeown /f <complete file/folder path>
i.e.: takeown /f "C:\Documents and Settings\JAYROD'S\WinBackdoor.exe"


hindi bawal mangarap ng :thanks: kahit mahirap.
 
Last edited:
Re: [TUT]How to lock a folder with a password without a software+BATCH FILE COMPILER

up ko lang. :D
 
Re: [TUT]How to lock a folder with a password without a software+BATCH FILE COMPILER

nka try na ako, 1 tool lang gamit ko, "uha.dll" kung mga 300+MB matatapos 12 mins, magiging 43MB. thx 4 sharing
 
Re: [TUT]How to lock a folder with a password without a software+BATCH FILE COMPILER

thanks. :)
 
Re: [TUT]How to lock a folder with a password without a software+BATCH FILE COMPILER

HMPP..MASUBUKAN NGA!
:noidea::noidea::noidea:
 
Re: [TUT]How to lock a folder with a password without a software+BATCH FILE COMPILER

pwede..thanks hitted..^_^
 
Re: [TUT]How to lock a folder with a password without a software+BATCH FILE COMPILER

supper hidden eh? hehehe
 
Back
Top Bottom