Search
Search titles only
By:
Search titles only
By:
Log in
Register
Search
Search titles only
By:
Search titles only
By:
Menu
Install the app
Install
Forums
New posts
All threads
Latest threads
New posts
Trending threads
Trending
Search forums
What's new
New posts
New ads
New profile posts
Latest activity
Free Ads
Latest reviews
Search ads
Members
Current visitors
New profile posts
Search profile posts
Contact us
Latest ads
Ad icon
Video Content Creator
pramukag
Updated:
Yesterday at 6:10 AM
Ad icon
QA Engineer Intern
pramukag
Updated:
Yesterday at 6:07 AM
Ad icon
Sell your Land, House on idamata.lk for FREE
sajith.xp.pk
Updated:
Thursday at 9:03 AM
Handmade Character Soft Toys
anil1961
Updated:
Tuesday at 2:11 PM
Bodim.lk out now !
Manoj Suranga Bandara
Updated:
Jun 21, 2026
Electronics
Vehicles
Property
Search
Reply to thread
Forums
Computers & Internet
Tips & Tricks
Lock folders without any Softwares !!!
Get the App
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Message
<blockquote data-quote="mldarshana" data-source="post: 3215720" data-attributes="member: 25657"><p><strong>Lock folders without any Softwares</strong></p><p></p><p>Lock your folder without using any software, use this self made custom program to serve your purpose.</p><p></p><p>Copy the following program</p><p>------------------------------------<p style="margin-left: 20px">cls</p> <p style="margin-left: 20px">@ECHO OFF</p> <p style="margin-left: 20px">title Folder Locker</p> <p style="margin-left: 20px">if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK</p> <p style="margin-left: 20px">if NOT EXIST Locker goto MDLOCKER</p> <p style="margin-left: 20px">:CONFIRM</p> <p style="margin-left: 20px">echo Are you sure u want to Lock the folder(Y/N)</p> <p style="margin-left: 20px">set/p "cho=>"</p> <p style="margin-left: 20px">if %cho%==Y goto LOCK</p> <p style="margin-left: 20px">if %cho%==y goto LOCK</p> <p style="margin-left: 20px">if %cho%==n goto END</p> <p style="margin-left: 20px">if %cho%==N goto END</p> <p style="margin-left: 20px">echo Invalid choice.</p> <p style="margin-left: 20px">goto CONFIRM</p> <p style="margin-left: 20px">:LOCK</p> <p style="margin-left: 20px">ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"</p> <p style="margin-left: 20px">attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"</p> <p style="margin-left: 20px">echo Folder locked</p> <p style="margin-left: 20px">goto End</p> <p style="margin-left: 20px">:UNLOCK</p> <p style="margin-left: 20px">echo Enter password to Unlock folder</p> <p style="margin-left: 20px">set/p "pass=>"</p> <p style="margin-left: 20px"></p> <p style="margin-left: 20px">if NOT %pass%==<strong>type your password</strong> <strong>here</strong> goto FAIL</p> <p style="margin-left: 20px">attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"</p> <p style="margin-left: 20px">ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker</p> <p style="margin-left: 20px">echo Folder Unlocked successfully</p> <p style="margin-left: 20px">goto End</p> <p style="margin-left: 20px">:FAIL</p> <p style="margin-left: 20px">echo Invalid password</p> <p style="margin-left: 20px">goto end</p> <p style="margin-left: 20px">:MDLOCKER</p> <p style="margin-left: 20px">md Locker</p> <p style="margin-left: 20px">echo Locker created successfully</p> <p style="margin-left: 20px">goto End</p> <p style="margin-left: 20px">:End</p> <p style="margin-left: 20px"></p><p>now go for following few steps</p><p>1>copy above program into notepad.</p><p>2>the text which is written in bold letters delete it & type your password there.</p><p>3>save that file by extension .bat ( name is Your choice)</p><p>4>now on Your screen there is a bat file appear.</p><p>5>double click on that file.</p><p>6>you will see the locker folder.</p><p>7>save the files in that folder.</p><p>8>double click on that folder & lock that folder</p><p>9>after locking that folder it will become hidden.</p><p>10>to open that folder double click on that bat file</p><p>11>type your password & open that folder..</p><p></p><p><strong>How it works</strong></p><p> first try this:-</p><p> Suppose you want to lock the folder xyz in e: which has the path e:\xyz.In the same drive create a text file and type</p><p>ren xyz xyz.{21EC2020-3AEA-1069-A2DD-08002B30309D}</p><p>Now save this text file as lock.bat</p><p> Create another text file and type in it</p><p>ren xyz.{21EC2020-3AEA-1069-A2DD-08002B30309D} xyz</p><p>Now save this text file as unlock.bat</p><p> Now you can see 2 batch files lock and unlock.</p><p></p><p></p><p> <strong>Explanation:-</strong></p><p> Press lock and the folder xyz will change to control panel and you cannot view its contents.Press unlock and you will get back your original folder.</p><p>That’s exactly the program above does…it creates a folder and when you lock it, it gets converted to the control panel and when you unlock it vice versa takes place and you get your folder back..</p><p></p><p></p><p> <strong>Special notes:-</strong></p><p> As this is a simple .bat file anyone can right click it and edit it. To get out of this i will advise you to convert it into an executable file. Many softwares are available on the net, Google out.</p><p></p><p></p><p><strong>Source:-</strong></p><p><strong></strong>Hacker’s Library Forum</p></blockquote><p></p>
[QUOTE="mldarshana, post: 3215720, member: 25657"] [B]Lock folders without any Softwares[/B] Lock your folder without using any software, use this self made custom program to serve your purpose. Copy the following program ------------------------------------[INDENT]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 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%==[B]type your password[/B] [B]here[/B] 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 [/INDENT]now go for following few steps 1>copy above program into notepad. 2>the text which is written in bold letters delete it & type your password there. 3>save that file by extension .bat ( name is Your choice) 4>now on Your screen there is a bat file appear. 5>double click on that file. 6>you will see the locker folder. 7>save the files in that folder. 8>double click on that folder & lock that folder 9>after locking that folder it will become hidden. 10>to open that folder double click on that bat file 11>type your password & open that folder.. [B]How it works[/B] first try this:- Suppose you want to lock the folder xyz in e: which has the path e:\xyz.In the same drive create a text file and type ren xyz xyz.{21EC2020-3AEA-1069-A2DD-08002B30309D} Now save this text file as lock.bat Create another text file and type in it ren xyz.{21EC2020-3AEA-1069-A2DD-08002B30309D} xyz Now save this text file as unlock.bat Now you can see 2 batch files lock and unlock. [B]Explanation:-[/B] Press lock and the folder xyz will change to control panel and you cannot view its contents.Press unlock and you will get back your original folder. That’s exactly the program above does…it creates a folder and when you lock it, it gets converted to the control panel and when you unlock it vice versa takes place and you get your folder back.. [B]Special notes:-[/B] As this is a simple .bat file anyone can right click it and edit it. To get out of this i will advise you to convert it into an executable file. Many softwares are available on the net, Google out. [B]Source:- [/B]Hacker’s Library Forum [/QUOTE]
Insert quotes…
Verification
Asuwa dahayen wadi kalama keeyada?
Post reply
Top
Bottom