Forum     

Go Back   Digit Technology Discussion Forum > Community > Tutorials
Register FAQ Calendar Mark Forums Read

Tutorials This section offers tutorials and How to's on just about anything related to computers and IT. Note: All tutorials are courtesy the posters and not verified by Digit


Closed Thread
 
LinkBack Thread Tools Display Modes
Old 31-01-2007, 03:32 PM   #1 (permalink)
GUNNING DOWN TEAMS
 
wizrulz's Avatar
 
Join Date: Mar 2005
Location: MUMBAI
Posts: 1,724
Default LOCK FOLDERS w/o any S/w


TO LOCK FILES W/O ANY S/w

Suppose you want to lock the folder games in d: which has the path D:\Games.In the same drive create a text file and type
ren games games.{21EC2020-3AEA-1069-A2DD-08002B30309D}
Now save this text file as loc.bat

Create another text file and type in it
ren games.{21EC2020-3AEA-1069-A2DD-08002B30309D} games
Now save this text file as key.bat

Now you can see 2 batch files loc and key.Press loc and the folder games will change to control panel and you cannot view its contents.Press key and you will get back your original folder.
try it out!!!!!!!

P.S.= Not my own tutorial. Found it in my old word saved file...so dunno the source....if any one knows it please do post in. If this alsready posted on this forum...then please do post the thread here...if not enjoy
__________________
The moment U stop learning ......u stop improving
wizrulz is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 31-01-2007, 03:44 PM   #2 (permalink)
Super Hero - Super Powers
 
n2casey's Avatar
 
Join Date: Sep 2006
Location: Dynamic
Posts: 766
Default Re: LOCK FOLDERS w/o any S/w

I don't whether posted before or not but I already know that.
Anyway, thx for posting, will help who don't knows.
__________________
Minds are like Parachutes :arrow: They work best when open
n2casey is offline  
Old 31-01-2007, 11:11 PM   #3 (permalink)
GUNNING DOWN TEAMS
 
wizrulz's Avatar
 
Join Date: Mar 2005
Location: MUMBAI
Posts: 1,724
Default Re: LOCK FOLDERS w/o any S/w

Cool u know it...its for them to who do not know
__________________
The moment U stop learning ......u stop improving
wizrulz is offline  
Old 31-01-2007, 11:23 PM   #4 (permalink)
Super Hero - Super Powers
 
n2casey's Avatar
 
Join Date: Sep 2006
Location: Dynamic
Posts: 766
Wink Re: LOCK FOLDERS w/o any S/w

Quote:
Originally Posted by n2casey
..but I already know that.
Anyway, thx for posting, will help who don't knows.
Quote:
Originally Posted by wizrulz
Cool u know it...its for them to who do not know
Is there any difference????????
__________________
Minds are like Parachutes :arrow: They work best when open
n2casey is offline  
Old 01-02-2007, 08:08 PM   #5 (permalink)
Ron
||uLtiMaTE WinNER||
 
Ron's Avatar
 
Join Date: Nov 2006
Location: Kathmandu,Nepal
Posts: 698
Smile Re: LOCK FOLDERS w/o any S/w

Hey buddy
thanks……………….
Keep Posting!!!!!!!!!!!!!!!
Reps For u!!!!!!!!!!!

For more safety u can……………

1. Create a folder say it as "Games" in E:\
2. Go to D:\ron
3. Create both the batch files
a. ren e:\games games.{21EC2020-3AEA-1069-A2DD-08002B30309D}
Save the text file as 1.bat
b. ren e:\games.{21EC2020-3AEA-1069-A2DD-08002B30309D} games
Save the text file as 2.bat

U can mk the folder (Ron and Games) invisible and hidden for better protection.

And hey for this trick there is a software also made………..
Locking folders without commercial softwares.

U can visit this link also for folder/files security………
Secure Your Folder!!

Post 1 and 6
__________________
||uLtiMaTE WinNER||
Ron is offline  
Old 02-02-2007, 02:18 AM   #6 (permalink)
Broken In
 
anilmail17's Avatar
 
Join Date: Aug 2004
Location: 127.0.0.1
Posts: 149
Default Re: LOCK FOLDERS w/o any S/w

well i have implemented the whole idea in a single batch file which also ask you for the password before unlocking the Locker try this code. save this as code locker.bat. At first time start it will create folder with Locker automatically for u. Don't forget to change your password in the code i have shown the place where to type your password
Code:
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%==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
pause
rem visit www.anilsoni.net.tc
njoy and if u really like my code then repute me
__________________
visit my blog
www.anilsoni.wordpress.com:)

Last edited by anilmail17; 02-02-2007 at 02:24 AM.
anilmail17 is offline  
Old 02-02-2007, 02:38 AM   #7 (permalink)
Still Shining!
 
Lucky_star's Avatar
 
Join Date: Nov 2006
Location: Up 'n' above
Posts: 1,174
Smile Re: LOCK FOLDERS w/o any S/w

Nice Trick.. Working Thanx
__________________
Simplicity is the ultimate Sophistication
HP dv6 6121tx: Core i7 2630 QM | 4GB | AMD 6770M 2GB GDDR5 | 640 GB
Nokia N86 8MP
Lucky_star is offline  
Old 02-02-2007, 02:59 AM   #8 (permalink)
Human Spambot
 
shantanu's Avatar
 
Join Date: Dec 2006
Posts: 2,798
Default Re: LOCK FOLDERS w/o any S/w

its great!!!
shantanu is offline  
Old 02-02-2007, 08:20 PM   #9 (permalink)
Broken In
 
Tushar.bar's Avatar
 
Join Date: Jan 2006
Posts: 123
Default Re: LOCK FOLDERS w/o any S/w

more

Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}
Internet Explorer.{FBF23B42-E3F0-101B-8488-00AA003E56F8}
Recycle Bin.{645FF040-5081-101B-9F08-00AA002F954E}
My Computer.{20D04FE0-3AEA-1069-A2D8-08002B30309D}
My Documents.{ECF03A32-103D-11d2-854D-006008059367}
Fonts.{BD84B380-8CA2-1069-AB1D-08000948F534}
Tushar.bar is offline  
Old 03-02-2007, 12:12 AM   #10 (permalink)
GUNNING DOWN TEAMS
 
wizrulz's Avatar
 
Join Date: Mar 2005
Location: MUMBAI
Posts: 1,724
Default Re: LOCK FOLDERS w/o any S/w

good keep them coming...
__________________
The moment U stop learning ......u stop improving
wizrulz is offline  
Old 03-02-2007, 10:39 AM   #11 (permalink)
Ron
||uLtiMaTE WinNER||
 
Ron's Avatar
 
Join Date: Nov 2006
Location: Kathmandu,Nepal
Posts: 698
Smile Re: LOCK FOLDERS w/o any S/w

@Anil

Hey buddy ur tut is great but the password option doesn't work well.
For an example-
  • I created a batch file named "1.bat" with a password named "Ronak "
  • I locked the folder with that batch file.
  • I deleted the batch file named "1.bat" having password "Ronak"
  • I again created a batch file named "2.bat" with the password "Ronak Agrawal"
  • I tried to run "2.bat"
  • It asked for me a password to unlock the file.
  • I applied "Ronak Agrawal" as the password.
  • It worked successfully……………..
However …
This trick will be not identified by anyone as
1. No one will be able to the see the folder "locker" by going to tools>folder Options>Show hidden files

2.No one will match the information by counting the number of files present in the folder and the total no of files and folders displaying in Properties>Genral>Contains
of that folder.

Reps For You!!!!!
====
Pls Comment!!!! On This!!!!!
__________________
||uLtiMaTE WinNER||

Last edited by Ron; 03-02-2007 at 12:52 PM.
Ron is offline  
Old 03-02-2007, 02:45 PM   #12 (permalink)
Broken In
 
anilmail17's Avatar
 
Join Date: Aug 2004
Location: 127.0.0.1
Posts: 149
Default Re: LOCK FOLDERS w/o any S/w

Ronak actually batch programming do not provides option to maintain variable state so this method of password cracking for locker.bat doesn't have any solution but u can try my another software which works great and doesn't have this type of security flaws. Try http://anilsoni85.byethost31.com/SecureFolder/ i hope u will like this.
__________________
visit my blog
www.anilsoni.wordpress.com:)
anilmail17 is offline  
Old 05-02-2007, 06:28 PM   #13 (permalink)
ax3
Cool as a CUCUMBAR ! ! !
 
ax3's Avatar
 
Join Date: Dec 2003
Posts: 5,052
Default Re: LOCK FOLDERS w/o any S/w

nice 1 ............
ax3 is offline  
Old 05-02-2007, 09:02 PM   #14 (permalink)
Wise Old Owl
 
Tech Geek's Avatar
 
Join Date: Sep 2006
Location: Cyber Hell
Posts: 1,602
Default Re: LOCK FOLDERS w/o any S/w

Thanks
Nice one
__________________
Behind every good computer... is a jumble of wires 'n stuff
Tech Geek is offline  
Old 10-02-2007, 09:13 PM   #15 (permalink)
Mad and Furious
 
redhat's Avatar
 
Join Date: May 2006
Location: Visual Basic 6.0
Posts: 453
Default Re: LOCK FOLDERS w/o any S/w

I have already posted this as a Tutorial in this forum. It was my own innovation, no source.
Locking folders without commercial softwares.
Visit this
__________________
My new Tech Blog : http://technewspaper.blogspot.com/
redhat is offline  
Closed Thread

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


 
Latest Threads
- by Tenida
- by clinton

Advertisement




All times are GMT +5.5. The time now is 03:47 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2