August 16, 2008

Folder Lock


Everybody really want to hide their data from others at office/home. I got lots questions regarding how to lock folder and make it private. I have seen so many same question on Yahoo! Answers too. There was a trick in Win 98 where you customized folder and locked but it was too old. Mostly all people use Windows XP and Windows Vista nowadays. There are many third party software like Folder Guard, Folder Lock, My Secret Folder etc available in market. They lock your personal folder and hide your data from others. But, you need full version of those third party software which does cost to you. Well, I found a cool trick to lock folder and hide your data without third party software. It is nothing but just a .bat (batch) file trick which creates a folder named 'Locker' on same directory when you open .bat file with following text in it. So, if you want to lock your data then open Notepad and type following text or copy|paste then save it with .bat file extension.
___________________________________________________
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 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 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%==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
___________________________________________________

Don't forget to insert a password in place of text 'YOUR PASSWORD HERE'. Then simply run that .bat file. It will create a folder named 'Locker' on first run. (Please see following screen shot)


Once you get 'Locker' folder then save|copy-paste whatever you want to lock|hide from others. in 'Locker' folder. Now again make double click on .bat file. It pop ups a cmd window and ask you 'Are you sure you want to Lock the folder?(Y/N). Just input 'Y' and hit enter. It will lock|hide that 'Locker' folder with data in it. (Please see following screen shot)


Now, you want back your data from it. Just double click on .bat file again and it pop ups a cmd windows with command line 'Enter password to Unlock folder'. Just input your password which you typed in place of YOUR PASSWORD HERE'. It enables to see 'Locker' folder back and you can browse your data. (Please see following screen shot)


If you have trouble to type or copy|paste above coding text in Notepad then visit following link and download Folder Lock easily.

>>> Download Folder Locker here <<<

Advantages:
  • It is absolutely free
  • Just around less than 10 KB of size
  • It works with pen drive too
  • It works with Windows Vista too
Disadvantages:
  • Anyone can see when you enter a password
  • Not reliable like third party folder locker
  • It does not work with few system
Note: If you like posts here then please post your comments here.

August 10, 2008

Microsoft Office Outlook - Backup


Someone asked me about backup of Microsoft Office Outlook before few months ago. Their email account configured with Microsoft Office Outlook. So, each and every emails travel through Microsoft Office Outlook. The entire important emails and other relative data stored on hard disk. One day their Windows crashed and lost entire important emails including contacts details too. That is why they asked me about backup of Microsoft Office Outlook.


I found that Microsoft Corporation introduced Backup utility with Microsoft Office Outlook which is not so popular with Microsoft Office Outlook. This Backup utility works with following outlook client.
  1. Microsoft Outlook 2002
  2. Microsoft Office Outlook 2003
  3. Microsoft Office Outlook 2007
It is just 160 KB size of tool named 'pfbackup.exe'. It is absolutely free tool. You just need to run/install it then you get 'Backup' options under File menu of your Outlook. You can backup of your outlook as per your requirements. It creates backup in .pst file format(Personal folder files). You can store it on another partition or external removable storage media like Pen Drive, USB Hard Disk, CDs etc. Please visit following link to download backup tools.




It is easy to get backup of stored .pst file from your storage media. You just need to use Import and Export options under File menu of Microsoft Office Outlook. To learn more please visit following link of Microsoft Corporation.

Using the Microsoft Outlook Personal Folders Backup tool

.

August 03, 2008

Display Properties - Windows XP


I post answers on Yahoo! Answers regularly. Recently, I have seen few questions regarding Display properties of Windows XP. You can reach to Display Properties by right click on blank space on Desktop or go to start then click on Control Panel where you can get Display Properties. They asked about Display Properties, disable Screen Saver tab, disable Desktop tab etc. The system Administrator or some modified viruses/maleware are the reason of disable Display Properties and its features. You get following error message when your Display Properties disable by any reason(see screen shot).


It is nothing but just a registry trick. You can yourself make it enable or disable as per your requirements.

Enable Diplay Properties:
Type following text in notepad or copy-paste it and save it with .reg extension. Then simply run/merge it. It will Enable Display Properties.

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\system]
"NoDispCPL"=dword:00000000

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\system]
"NoDispCPL"=dword:00000000


Disable Diplay Properties:

Type following text in notepad or copy-paste it and save it with .reg extension. Then simply run/merge it. It will Disable Display Properties.

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\system]
"NoDispCPL"=dword:00000001

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\system]
"NoDispCPL"=dword:00000001


Enable Appearance tab:

Type following text in notepad or copy-paste it and save it with .reg extension. Then simply run/merge it. It will Enable Appearance (ie.Themes+Appearance) tab in Display Properties window.

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\system]
"NoDispAppearancePage"=dword:00000000

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\system]
"NoDispAppearancePage"=dword:00000000



Disable Appearance tab:

Type following text in notepad or copy-paste it and save it with .reg extension. Then simply run/merge it. It will Disable Appearance (ie.Themes+Appearance) tab in Display Properties window.

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\system]
"NoDispAppearancePage"=dword:00000001

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\system]
"NoDispAppearancePage"=dword:00000001


Enable Desktop tab:

Type following text in notepad or copy-paste it and save it with .reg extension. Then simply run/merge it. It will Enable Desktop tab in Display Properties window.

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\system]
"NoDispBackgroundPage"=dword:00000000

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\system]
"NoDispBackgroundPage"=dword:00000000


Disble Desktop tab:
Type following text in notepad or copy-paste it and save it with .reg extension. Then simply run/merge it. It will Disable Desktop tab in Display Properties window.

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\system]
"NoDispBackgroundPage"=dword:00000001

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\system]
"NoDispBackgroundPage"=dword:00000001


Enable Screen Saver tab:

Type following text in notepad or copy-paste it and save it with .reg extension. Then simply run/merge it. It will Enable Screen Saver tab in Display Properties window.

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\system]
"NoDispScrSavPage"=dword:00000000

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\system]
"NoDispScrSavPage"=dword:00000000


Disable Screen Saver tab:
Type following text in notepad or copy-paste it and save it with .reg extension. Then simply run/merge it. It will Disable Screen Saver tab in Display Properties window.

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\system]
"NoDispScrSavPage"=dword:00000001

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\system]
"NoDispScrSavPage"=dword:00000001


Enable Settings tab:

Type following text in notepad or copy-paste it and save it with .reg extension. Then simply run/merge it. It will Enable Settings tab in Display Properties window.

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\system]
"NoDispSettingsPage"=dword:00000000

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\system]
"NoDispSettingsPage"=dword:00000000


Disble Settings tab:
Type following text in notepad or copy-paste it and save it with .reg extension. Then simply run/merge it. It will Disable Settings tab in Display Properties window.

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\system]
"NoDispSettingsPage"=dword:00000001

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\system]
"NoDispSettingsPage"=dword:00000001


.