Wednesday, 21 August 2013

Lock a Folder With Password Using Free Folder Protector

All of us have some files and folders that we consider private. They can be anything from our business documents to pictures of friends and family. These are files that we don't want other people using our computer to know about. As Windows offers no way to protect our private information, most of us get in awkward situations when these files are discovered by unwanted people.

Surely, you can

Thursday, 15 August 2013

Add Background Images to Folders in Windows

Suppose you have a music folder that contains all songs by your favorite singer. Would it not be great if instead of the plain white background, you could add the singer's image as the background of this folder?

It is relatively easy to add background images to folders using a simple desktop.ini trick just as easily as you can change your Desktop's background.

Desktop.ini is a system file

Saturday, 10 August 2013

Enable Command Prompt Disabled by Administrator or Virus

Command Prompt is the tool in Windows which allows users to interact with their computer from a character user interface(CUI). It allows users to bypass most restrictions that are enforced on the Windows explorer based GUI. Hence, it can also be used to remove viruses and malware and also undo their effects. To avoid this, most viruses disable command prompt. Some administrators also purposefully

Friday, 9 August 2013

How to Start Windows in Safe Mode Easily

Safe Mode is a special diagnostic mode in which Windows runs with the minimum amount of features. As the features are limited, Windows does not load unnecessary startup items and runs only those files and drivers that are necessary for the basic functioning of the operating system. This allows users to remove recently installed programs that might be preventing Windows from starting correctly. As

Friday, 19 July 2013

How to disable the recent document history on your computer...???

Recent Document History

Hi everyone here is new tricks I’m going to show you how to disable the recent document history on your computer. This is a great thing if you don’t show your recent document history.

The bad thing about Recent Documents History is that Windows XP has to calculate what should be put there each time you boot Windows, which can slow things down.

1. At first open the Registry Editor by pressing “windows + R” then  type “regedit” and then hit enter. (Select Start/Run, type regedit, and click OK).

2. Now go to “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer”.
3. And then Create a NoRecentDocsHistory D_WORD key [Right Click® New ®DWORD (32- Bit) Value] . Double-click the value to open it once it is created.
Screenshot 1 

4. Set the Data Value to 1 to enable the restriction with hexadecimal.
5. Click OK and close the Registry Editor. You'll need to restart the computer for the change to take effect.
Screenshot 2

Note: If you want to enable recent document then go to “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer”. and delete “NoRecentDocsHistory” file that you have create and restart your computer.

Saturday, 6 July 2013

Why a hard drive has less storage space than promised?

It has happened to most of us. We buy a new hard drive (or maybe a flash drive) with mind boggling storage capacity only to find that it has less space than what was mentioned on the box. Angered, we start cursing the manufacturer and our dealer for false marketing thinking that they should be sued for doing this. Hey, but have you ever wondered how they continue to do this again and again

Friday, 21 June 2013

How to Remove Computer Virus Using Command Prompt (CMD)...???

Computer Virus

Each file and folder have the following attributes:

1).  Archive A
2).  Read Only R
3).  Hidden H
4).  System S
-(minus) sign before an attribute it means removing attributes and +(plus) sign mean giving attributes to the file or folder.
example ) attrib -r -a -s -h file.txt  this will remove all attributes from file.txt  and attrib +r +a +s +h file.txt  will give all attributes to file.txt .
If pen drive or other hard drive is infected by virus ,Command prompt is the best option.Follow the steps given below.

1).  Go to the command prompt by start>all programs>accessories>command prompt or press windows key+r and enter cmd .

2).  Go to the drive where you want to delete virus example write d: to go to D drive .

3).  Type “attrib -r -s -h *.* /s /d” without quotations  and press enter .

4)press dir /a .

5).  Delete all the .inf, .exe , .dll, .log extension file if they are not your files by using dos del command .

Example:
del autorun.inf
if any file is not deleting rename that file by rename command
Example:  rename dst.exe ms.bak this will rename dst.exe to ms.bak

Now Your pen drive is virus free .