05 September 2011
04 September 2011
01 September 2011
how to make password protected folder without any software
Today i would like to share with you how to make a password protected folder without any software .You can use this in your usb drive to protect your folders.
Follow these instruction.
1. Open Notepad and copy the 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
2. Change your password in the code it's shown the place where to "type your password here".
3. Save file as locker.bat
4. Now double click on locker.bat
5. It will create folder with locker automatically for you. After creation of the locker folder, place the contents you want to lock inside the locker folder and run locker.bat again .
Yeah, Now you can save you private data for free but here the catch, you can edit your password by right clicking the bat file and select "edit". In order to prevent someone changing your password, try change the file name and extension such as "system.dat".
If any questions then plz comment.
NOTE : this will work only in window xp .
Follow these instruction.
1. Open Notepad and copy the 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
2. Change your password in the code it's shown the place where to "type your password here".
3. Save file as locker.bat
4. Now double click on locker.bat
5. It will create folder with locker automatically for you. After creation of the locker folder, place the contents you want to lock inside the locker folder and run locker.bat again .
Yeah, Now you can save you private data for free but here the catch, you can edit your password by right clicking the bat file and select "edit". In order to prevent someone changing your password, try change the file name and extension such as "system.dat".
If any questions then plz comment.
NOTE : this will work only in window xp .
31 August 2011
how to hide drives in window 7
Today i will show u how to hide driver in windows 7. It is clear that when our pc is shared by relatives, friends, or even in your work. we always has some information which is private.Thats why u want this tutorial.
if you want this you can follow the tutorial.
1.First goto Start >> run >> then type gpedit.msc and click on the icon that we
appears
2.This opens the Group Policy editor, now we "browse " Configuration
> Administrative Templates> Windows Components> Windows Explorer and you click on Hide these specific drives in My Computer
3.Now another window will allow us to select options from the previous selection, first enable the group policy
4.And then we choose the units that we want not see
if you have any doubts regarding the above post then plz comment.
if you want this you can follow the tutorial.
1.First goto Start >> run >> then type gpedit.msc and click on the icon that we
appears
2.This opens the Group Policy editor, now we "browse " Configuration
> Administrative Templates> Windows Components> Windows Explorer and you click on Hide these specific drives in My Computer
3.Now another window will allow us to select options from the previous selection, first enable the group policy
4.And then we choose the units that we want not see
if you have any doubts regarding the above post then plz comment.
hack firefox to auto save password without any notification
Hi guys, Today i would like to share about how to save username & passwords automatically without any conformation.We have to just replace a sigle .js file
.
Step 1: First close the firefox.
Step 2: Now locate the nsloginmanagerprompter.js which is normally found in
C:\ProgramFiles\MozillaFirefox\Components\
replace the file
Now your done go into firefox and try it out.To see the usernames + passwords you need to click on tools at the top of your browser and go to page info then security.
they will be saved into the saved passwords section.
.
Step 1: First close the firefox.
Step 2: Now locate the nsloginmanagerprompter.js which is normally found in
C:\ProgramFiles\MozillaFirefox\Components\
Step 3: open nsloginmanagerprompter.js with notepad ++.
Step 4: replace the entire line 804 to 869 with the following code.Step 5 : when you've done that "save as" to your desktop, then drag back into the original folder &
var pwmgr = this._pwmgr;
pwmgr.addLogin(aLogin);
replace the file
Now your done go into firefox and try it out.To see the usernames + passwords you need to click on tools at the top of your browser and go to page info then security.
they will be saved into the saved passwords section.













