Remote Tech Support

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg

Thursday, 28 October 2010

How our e-mail password stores in to our system ?

Posted on 22:34 by Unknown
When we log out our password is taken out of the system and there is no place where we can actually see our password.
Almost any service we use (gmail, rediffmail, yahoomail etc) has the option to REMEMBER our password so we do not have to enter it when we sign in to a particular site. In this case all we will see is "xxxxxxx".
The below description is how we can  REMOVE those that are remembered, but if we read it correctly it shows us where to go if we do want them remembered.

INTERNET EXPLORER :

Click on TOOL...INTERNET OPTIONS...CONTENT TAB. Once in go below and click on SETTINGS for Auto Complete. Click on "delete autocomplete history" and then OK. Once this is done you might want to place a check mark in the box to the left of "user names and passwords on forms" AND "ask me before saving passwords". That way you can save the passwords you want and deny those that you do not. Then click OK. .

FIREFOX : 

Click on TOOLS...OPTIONS....PRIVACY TAB...go below and make sure there is a check mark in the box to left of "clear history when Firefox closes" and then click on SETTINGS. Place a check mark in the box to the left of "saved passwords"...click OK
There may be times you want to save passwords so you can click on TOOLS...OPTIONS ..SECURITY tab...go below and place a check mark in the box to the left of "remember passwords for sites"..click OK. You will be given options of remembering this password or not.

GMAIL :

You may sometimes be logged in or have your login information displayed automatically because your username and password are stored in your browser's cache or settings.
If you don't want 'AutoComplete' to automatically log you in to Gmail, please follow these steps:

For Internet Explorer 6:

1. Click the Tools menu at the top of your browser, and select Internet Options.
2. Open the Content tab at the top of the dialogue box.
3. Click the AutoComplete... button, and uncheck the User names and passwords on forms and Prompt me to save passwords boxes.
4. Click OK.

For Internet Explorer 7:
1. Click the Tools menu at the top of your browser, and select Internet Options.
2. Open the Content tab at the top of the dialogue box.
3. Click AutoComplete, then Settings button, and uncheck the User names and passwords on forms and Prompt me to save passwords boxes.
4. Click OK.

GOOGLE CHROME :
 Click the Tools menu tools menu.
1. Select Clear browsing data.
2. Select Empty the cache and Delete cookies.
3. Click Clear browsing data.
To ensure that your data isn't saved when you sign in, please remember to leave the box next to Stay signed in unchecked on the Gmail sign in page


Source : http://andheriho.blogspot.com/
Read More
Posted in Internet Tips | No comments

Information on batch files

Posted on 00:55 by Unknown
Batch files allow MS-DOS and Microsoft Windows users to create a lists of commands to run in sequence once the batch file has been executed. For example, a batch file could be used to run frequently run commands, deleting a series of files, moving files, etc. A simple batch file does not require any special programming skills and can be done by users who have a basic understanding of MS-DOS commands.
A good example of a batch file for someone who is more familiar with Windows or the MacOS is to think of a batch file as a shortcut in Windows or an icon on the MacOS. Much like a shortcut, batch files could be used to run one or more commands and/or programs through the command line.

Another example of a very well known batch file is the autoexec.bat, which is a simple boot file loaded each time the computer is loaded on MS-DOS and early Windows computers. This batch file contained all the necessary commands and programs used to run MS-DOS and Windows each time the computer booted.

Creating a batch file

MS-DOS users
Microsoft Windows and other users

MS-DOS users
To create a basic batch file in MS-DOS, follow the below steps that give you an example of how to create a basic batch file.
  1. Open an MS-DOS command window or get to MS-DOS. Additional information about doing this can be found on document CHDOS.
  2. At the MS-DOS prompt, type: edit test.bat and press enter.
  3. If typed properly, you should now be in a blue screen. Within the screen, type:

    pause
    dir c:\windows
    dir c:\windows\system
  4. Once the above three lines have been typed in, click File and choose exit; when prompted to save, click "Yes." Users who do not have a mouse cursor can accomplish this same task by pressing ALT+F to access the file menu, then pressing "X" to exit, and pressing enter to save changes.
  5. Once you are back at the MS-DOS prompt, type: test and press enter. This will execute the test.bat file and begin running the file. Because the first line is pause, you will first be prompted to press a key. Once you press a key the batch file will run line-by-line; in this case, listing the files in the windows and windows\system directories.
If you wish to add more lines to this batch file you would simply type "edit test.bat" to edit the file again.
Additional information about the MS-DOS edit command can be found on our edit command page. Some versions of MS-DOS and bootable diskettes may not have the edit command; if this is the case, you would either need to obtain the edit.com file to access this file or use the copy con command.

Microsoft Windows and other users

A Windows user can still use the above MS-DOS steps if they wish to create a batch file. If, however, you're more comfortable using Microsoft Windows or your operating system, you can use any text editor, such as Notepad or Wordpad, to create your batch files, as long as the file extension ends with .bat. In the below example we use the Windows notepad to create a batch file.
  1. Click Start
  2. Click Run
  3. Type: notepad and press enter.
  4. Once notepad is open, type the below lines in the file or copy and paste the below lines into notepad.

    @echo off
    echo Hello this is a test batch file
    pause
    dir c:\windows
  5. Click File and click Save; browse to where you want to save the file. For the file name, type "test.bat", and if your version of Windows has a "Save as type" option, choose "All files", otherwise it will save as a text file. Once all of this has been done click the Save button and exit notepad.
  6. Now, to run the batch file, simply double-click or run the file like any other program. Once the batch file has completed running it will close the window automatically.
Batch commands
Just like all MS-DOS commands, all batch file commands are not case sensitive. However, in the below listing we have listed all commands in all caps to help you identify what is a command and what is not.

@Does not echo back the text after the at symbol. This is most commonly used as @ECHO OFF to prevent any of the commands in the batch file from being displayed, just the information needed.
%1The percent followed by a numeric value, beginning with one, allows users to add variables within a batch file. The below line is an example of what can be used in a batch file. ECHO Hello %1
When the above one-line batch file is created, add your name after the batch file. For example, typing myname (being the name of the bat file) and then your name:
myname bob
would output:
Hello bob
Note: This can be extended to %2, %3, and so on.
::One of two ways of adding remarks into the batch file without displaying or executing that line when the batch file is run.
:LABELBy adding a colon in front of a word, such as LABEL, you create a category, more commonly known as a label. This allows you to skip to certain sections of a batch file such as the end of the batch file. Also see GOTO.
CALLThis is used to run another batch file within a batch file. When the batch file that is called is completed, the remainder of the original batch file is completed. Note if the batch file does not exist it will give an error message.
CHOICESee running different programs for an example of how to use this command.
  • Additional information and the syntax of this command in each version of Windows and MS-DOS can be found on our CHOICE command page.
CLSJust like the DOS command would clear your screen.
  • Additional information and the syntax of this command in each version of Windows and MS-DOS can be found on our CLS command page.
ECHOWill echo a message in the batch file. Such as ECHO Hello World will print Hello World on the screen when executed. However, without @ECHO OFF at the beginning of the batch file you'll also get "ECHO Hello World" and "Hello World." Finally, if you'd just like to create a blank line, type ECHO. adding the period at the end creates an empty line.
EXITExits out of the DOS window if the batch file is running from Windows.
  • Additional information and the syntax of this command in each version of Windows and MS-DOS can be found on our EXIT command page.
GOTO LABELUsed to go to a certain label, such as LABEL. An example of GOTO would be to GOTO END. For an example of this see running different programs.
  • Additional information and the syntax of this command in each version of Windows and MS-DOS can be found on our GOTO command page.
IFUsed to check for a certain condition if the condition exists. If that condition exists it will perform that function. To see an example of this see running different programs.
  • Additional information and the syntax of this command in each version of Windows and MS-DOS can be found on our IF command page.
PAUSEPrompt the user to press any key to continue.
REMOne of two ways of adding remarks into the batch file without displaying or executing that line when the batch file is run.
SHIFTChanges the position of replaceable parameters in a batch program.
  • Additional information and the syntax of this command in each version of Windows and MS-DOS can be found on our SHIFT command page.
STARTUsed for Windows 95, Windows 98, and Windows NT 4.0 and above to start a windows application; such as START C:\WINDOW\CALC would run the Windows Calculator. Users running Windows 3.x need to utilize the WIN command.  For example, WIN C:\Windows\CALC.EXE would run Windows and then Calculator after Windows has finished loading. 
  • Additional information about the start command can be found on our start command page.


Batch file examples

Running different programs
How to start Windows files and programs from a batch file
Creating a batch file delay
How to make a time log

Running different programs
Below is a simple example of how you can implement the choice options into your batch files. Each line that is in red can be left out of the batch file. They have been included to help explain some of what the batch file means. Windows 2000 and Windows XP users will need to substitute the choice command with the set command; see our set command page for additional help and information with this command.

@ECHO OFF
REM - LABEL INDICATING THE BEGINNING OF THE DOCUMENT.
:BEGIN
CLS
REM - THE BELOW LINE GIVES THE USER 3 CHOICES (DEFINED AFTER /C:)CHOICE /N /C:123 PICK A NUMBER (1, 2, or 3)%1
REM - THE NEXT THREE LINES ARE DIRECTING USER DEPENDING UPON INPUTIF ERRORLEVEL ==3 GOTO THREE
IF ERRORLEVEL ==2 GOTO TWO
IF ERRORLEVEL ==1 GOTO ONE
GOTO END
:THREE
ECHO YOU HAVE PRESSED THREE
GOTO END
:TWO
ECHO YOU HAVE PRESSED TWO
GOTO END
:ONE
ECHO YOU HAVE PRESSED ONE
:END
How to start Windows files and other programs from a batch file
To run Microsoft Windows programs or files use the START command. The below example would run Windows Notepad.
START /MAX NOTEPAD
You can also specify the direct location of the file by typing the below command.
START /MAX C:\Windows\NOTEPAD.EXE
*Windows users who have a different directory (e.g. Windows 2000 users) would need to substitute WINNT or the name of their directory in place of Windows in the above example.
The /m representing it to start the window Maximized. See our start command page for additional information about this command.
Creating a batch file delay
Below is an example of how to delay a batch file any where from 5 to 99 seconds. In the below example we illustrate a 5 second delay.
TYPE NUL | CHOICE.COM /N /CY /TY,5 >NUL

Additionally, you could use the sleep file found on our utility download section.
How to make a time log in a batch file
The below example demonstrates how to create a time log of when the batch file is loaded, or for example, this could be used in the autoexec.bat when someone logs into a computer that supports this file.
ECHO. |TIME > TIME
COPY LOG +TIME
An alternate, slightly more complicated method that, to our knowledge, cannot be used in Windows NT, Windows 2000 or Windows ME would be the following:
echo @prompt set date=$d$_set time=$t$h$h$h > {a}.bat
%comspec% /e:2048 /c {a}.bat > {b}.bat
for %%v in ({b}.bat del) do call %%v {?}.bat
echo %date% %time% >> log
Another alternative is:
echo. |time |find "current" >> log
For the above batch file to work properly you must create a file called log, by typing edit log and then save and exit the file, creating a 0 bytes file. If this file is not created or not created properly you will receive the error message Content of destination lost before copy.
Read More
Posted in Windows Tips | No comments

Tuesday, 26 October 2010

ActiveX component can't create object - Error

Posted on 02:56 by Unknown

Cause 1: DAO is not properly registered

Resolution

  1. On the computer that hosts Microsoft Windows Terminal Server or the computer on which Microsoft Access is installed, click Start, and then click Run.
  2. Type regsvr32 followed by the path to your DAO file. Enclose this path in quotation marks. For example, to register the DAO 3.6 library, use the following command:
    regsvr32 "C:\Program Files\Common Files\Microsoft Shared\DAO\DAO360.DLL"

Cause 2: One or more references are missing

Resolution

  1. Open the database for which you receive the error message.
  2. Press ALT+F11 to open the Microsoft Visual Basic Editor.
  3. In the Visual Basic Editor, click References on the Tools menu.
  4. Examine the list of libraries. If any items are marked as "missing," locate the library file and re-associate the reference. Or, click to clear the check box next to the library name.

Cause 3: There is a utility database reference that is not valid

Resolution

  1. Open the database for which you receive the error message.
  2. Press ALT+F11 to open the Visual Basic Editor.
  3. In the Visual Basic Editor, click References on the Tools menu.
  4. Click to clear the check box next to any reference to Utility Database or Utility.mda.

Read More
Posted in SQL, Windows Tips | No comments

SQL Server Enterprise Manager - opening problem

Posted on 02:31 by Unknown
Problem :


"MMC cannot open the file C:\Program Files\Microsoft SQL Server\80\Tools\BINN\SQL Server Enterprise Manager.MSC. This may be because the file does not exist, is not an MMC console, or was created by a later version of MMC. This may also be because you do not have sufficient access rights to the file."




Solution:
Go to run box and run regsvr32 C:\Windows\system32\msxml3.dll when succeeded it will allow you to both opening and closing off your mmc


or 


Go to C:\Windows\system32\  folder , select the msxml3.dll ,  Open With   -> Browse -> C:\Windows\system32\ Regsvr32.exe



Read More
Posted in Software Tips, SQL | No comments

Friday, 22 October 2010

Most Oftenly faced Problems by SAs

Posted on 10:53 by Unknown
Most Oftenly faced Problems by SAs


A} Increase Hard Disk speed in Windows


If you like to increase/optimize your Hard Disk I/O - read/write speed without buying expensive software utilities to do that job or changing the HD, just follow next steps. With doing these steps you will increase Hard disk speed (depends of manufacture and specification, but its worth to try). The most speed improvement is visible with IDE drives; however there are reports that this tweak also does good for SCSI disks.

In any case, it won't harm your system, so try it yourself and let me know what you find!

Steps:

1. Run SYSEDIT.EXE from the start & then Run command.
2. Expand the system.ini file window.
3. Scroll down almost to the end of the file untill you find a line called [386enh].
4. Press Enter to make one blank line, and in that line type
5. Irq14=4096 (note: This line IS CASE SENSITIVE)
6. Click on the File menu, then choose Save.
7. Close SYSEDIT and reboot your computer.
8. Restart windows!

The speed improvement will be noticed just after the system reboots, any system info. software can be used to check the improvement.

B}Most Common Computer Problems and Their Solution (Part-1)

Hi guys, i have already posted several posts on computer tips and tricks here and also disscussed several problems. Now i am going to speak about "Most common problems and solutions". Here you will find the solution for most of the common problems faced by people with there computer.

Note: All the information here is collected form various sites and forums.

1. I can't see Hidden files/folders in my computer. Even I enable the option "Show hidden files/folders" in "Tools -> Folder Options", its automatically disabled again.

Solution1: Go to your Start menu, click on Run and open up your Registry Editor by typing "regedit" without the quotes and pressing OK.

Once there go to: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folde r\Hidden\SHOWALL

Delete the value CheckedValue. (Its type should be REG_SZ and data should be 0 or 1.)

Create a new DWORD value called CheckedValue (same as above, except that the type is REG_DWORD) by right clicking on the right pane->New->DWORD Value. Modify the value data to 1 (0x00000001).
Solution 2: Open regedit and goto:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced
In right-side pane, change value of "Hidden" to as following:

1 - To show hidden file
2 - To not show hidden files

If it doesn't work, then scan your computer with an anti-virus software.


C} Task Manager Disabled:

Using Group Policy Editor - for Windows XP Professional to Enable Task Manager.

* Click Start, Run, type gpedit.msc and click OK.
* Navigate to this branch:

User Configuration / Administrative Templates / System / Ctrl+Alt+Delete Options / Remove Task Manager

* Double-click the Remove Task Manager option.
* Set the policy to Not Configured.

Enable RegEdit [It is not tested]

REGEDIT4
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersio
n\Policies\System]
"DisableRegistryTools"=dword:00000000

Save the text file as any name u with extension .reg
example:- "enable.reg"
After that double click to run the file.

Note:DO SCAN YOUR MACHINE WITH A GOOD ANTIVIRUS. BECAUSE THIS PROGRAMS DON'T TURNED OFF BY HIMSELF OR AUTOMATICALLY. IT HAS TO A VIRUS EFFECT OR A ADMINISTRATOR HAS TO MANUALLY DISABLE THIS PROGRAMS.





D} Restore Deleted Recycle Bin Icon from Desktop:

Method #1:
1. Right-click an empty area of your desktop
2. Select Properties
3. Click the Desktop tab
4. Click the Customize button
5. Click Restore Default
6. Exit all windows and restart your computer

Method #2:
Note: Be sure to make a backup copy of your registry prior to making any changes.

Go to Start>> Run. Type in: regedit [Enter]

Navigate to: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace

Hold the mouse on NameSpace and right-click once. From the resulting menu, select Edit>> New>> Key

Copy and Paste the following Key code (including the brackets):

{645FF040-5081-101B-9F08-00AA002F954E}

Press Enter on your keyboard, exit the registry editor and restart your system.



E Blank User Accounts Applet :

Problem:
When you double-click User Accounts applet in the Control Panel, the User Accounts applet opens, but it may be completely blank.

The buttons Back | Forward | Home are displayed in the dialog.

Resolution:
To resolve the problem, type these commands from Start, Run dialog:

regsvr32 jscript.dll

If that does not help, execute the following commands as well.

regsvr32 nusrmgr.cpl
regsvr32 /i mshtml.dll


F} Force windows XP to reboot upon crashing:

This registry edit will cause your system to reboot itself automatically upon crashing. This can be useful if you have a reason for keeping your system on 24/7:


Open REGEDIT

Navigate to 'HKEY_LOCAL_MACHINE\SYSTEM
\CurrentControlSet\Control\CrashControl'

Edit the 'AutoReboot' value to '1'


G} Improving the Slow Boot up time:

There are a variety of reasons why your windows XP system would boot slowly. Most of the times it this has to do with the startup applications. If you would like to speed up the bootup sequence, consider removing some of the startup applications that you do not need. Easiest way to remove startup apps is through System Configuration Utility. Go to Start then Run and enter MSCONFIG and go to the Startup tab. Deselect/UnCheck application(s) that you do not want to startup at boot time.


H} Regedit Disabled By Admin:

Open Notepad pad, copy paste the following text to the note pad::

REGEDIT4
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersio
n\Policies\System]
"DisableRegistryTools"=dword:00000000

Save the text file as any name u with extension .reg

example:- "enable.reg"

After that double click to run the file.





I}  Double-clicking any drive opens search option:

Solution 1:
That's a virus named as ravmon.exe and autorun.inf
Scan first with a good antivirus [Nod32 Recommanded]
then try this trick.

First show the hidden files and folders options then try this method

1. Go to Start-->run and type cmd then click ok

2. If u want to remove the infected file from c drive then type C: in command prompt and press enter

3. Type autorun.inf and press enter
autorun.inf file is opened

4. Now type "attrib autorun.inf -s -h -r" and press enter

5. Now delete the file by typing
"del autorun.inf" and press enter

6.Now type autorun.inf and press enter now, u will find no infected autorun.inf file.

7. same way do for all other drives then restart ur pc


J} Accidentally deleted my "mspaint.exe"/"notepad.exe"/etc. file, how can I get it back?


Solution::

You can use any of following methods:

A. Goto "%windir%\System32\DLLCache" folder and look for the file, if its there then copy it to "%windir%\System32\" folder.

B. Insert your Windows Setup CD and goto "I386" folder. Now look for the same file, it'll present there but the last letter of extension will be "_". e.g., u'll get "mspaint.ex_"/"notepad.ex_"/etc. Now open Command Prompt and goto "I386" folder and give following command:

expand mspaint.ex_ mspaint.exe
expand notepad.ex_ notepad.exe
etc.

Now u can copy the file to "%windir%\System32" folder.

C. Give following command in Command Prompt:

sfc /SCANNOW

It'll automatically restore the files.

K}When I start my computer, I get error message:"Windows\System32\config\system" file missing or corrupt

Solution::
Boot using Windows Setup CD and enter into "Recovery Console" by pressing "R". Now Log into windows installation and enter admin password. Now give following commands at prompt:

copy %windir%\Repair\system %windir%\System32\Config

If it doesnt work, then again boot into "Recovery Console" and give following commands:

fixmbr
bootcfg /scan
bootcfg /rebuild
fixboot



L} Add A Photo To MyComputer Properties

STEPS R AS UNDER :

1. Open Notepad

2. Type the following:

[General]
Manufacturer="your_name
[Support Information]
Line1= http://www.sapost.blogspot.com
Line2= visit http://www.sapostforum.blogspot.com/

3. Save as "oeminfo.ini" in the System32 folder.(Without Quote)

4. Create a bmp file(Your Photo) and save it the System32folder as "oemlogo.bmp"(Without Quote).The size of the image should be within 180 (wide) x120 (high) pixels

5. Now Check your My Computer Properties.

It's tested and working.

M} tips for securing your PC


1. Update / patch ALL your software every now and then!

2. Check / adjust ALL your settings so they are safe, since they ARENOT by default!

3. Use firewall,

4. Use good passwords: at least 13marks long, containing both letters and numbers. Remember to chance your password every few months atleast!

5. Get good anti-virus & Spyware softwares and keep it updated!

6. Don’t open or execute files that you are not 100% sure are absolutely safe no matter where or how you get them.

7. Wipe your historyfiles (like cookies, internet history and temporary files, etc.), logs and personal files, with specific wiping program (like Eraser) instead of just deleting them.

8. Don’t use public computers for anything you need to type in your logins, they usually have Trojan horses that capture your passwords.

9 Don’t assume anything. If you don’t know, find out! If you cant or don’t understand, ask someone who knows! There’s nothing more dangerous than doing something you don’t really know anything about. That’s the best way to cripple your system or get a Trojan horse on your computer!


Thanks to : 
A.ShivRame, SA , Jalgaon HPO-425001, Mob 09960906659

Read More
Posted in Trouble shooting, Windows Tips | No comments

Give time to our Family - Story

Posted on 10:21 by Unknown


After 21 years of marriage, my wife wanted me to take another woman out to dinner and a movie. She said, “I love you, but I know this other woman loves you and would love to spend some time with you.”

The other woman that my wife wanted me to visit was my MOTHER, who has been a widow for 19 years, but the demands of my work and my three children had made it possible to visit her only occasionally. That night I called to invite her to go out for dinner and a movie. “What’s wrong, are you well?” she asked.

My mother is the type of woman who suspects that a late night call or a surprise invitation is a sign of bad news. “I thought that it would be pleasant to spend some time with you,” I responded. “Just the two of us.” She thought about it for a moment, and then said, “I would like that very much.”

That Friday after work, as I drove over to pick her up I was a bit nervous. When I arrived at her house, I noticed that she, too, seemed to be nervous about our date. She waited in the door with her coat on. She had curled her hair and was wearing the dress that she had worn to celebrate her last wedding anniversary. She smiled from a face that was as radiant as an angel’s. “I told my friends that I was going to go out with my son, and they were impressed, “she said, as she got into the car. “They can’t wait to hear about our meeting.”

We went to a restaurant that, although not elegant, was very nice and cozy. My mother took my arm as if she were the First Lady. After we sat down, I had to read the menu. Her eyes could only read large print. Half way through the entries, I lifted my eyes and saw Mom sitting there staring at me. A nostalgic smile was on her lips. “It was I who used to have to read the menu when you were small,” she said. “Then it’s time that you relax and let me return the favor,” I responded. During the dinner, we had an agreeable conversation – nothing extraordinary but catching up on recent events of each other’s life. We talked so much that we missed the movie. As we arrived at her house later, she said, “I’ll go out with you again, but only if you let me invite you.” I agreed.

“How was your dinner date?” asked my wife when I got home. “Very nice. Much more so than I could have imagined,” I answered.

A few days later, my mother died of a massive heart attack. It happened so suddenly that I didn’t have a chance to do anything for her. Some time later, I received an envelope with a copy of a restaurant receipt from the same place mother and I had dined. An attached note said: “I paid this bill in advance. I wasn’t sure that I could be there; but nevertheless, I paid for two plates – one for you and the other for your wife. You will never know what that night meant for me. I love you, son.”

At that moment, I understood the importance of saying in time: “I LOVE YOU” and to give our loved ones the time that they deserve. Nothing in life is more important than your family. Give them the time they deserve, because these things cannot be put off till “some other time.”
Read More
Posted in Entertainments | No comments

Thursday, 21 October 2010

Cleaning the computer and its components

Posted on 10:09 by Unknown

Cleaning the computer and its components


Introduction
Cleaning your computer and your computer components and peripherals helps keep the components and computer in good working condition and helps keep the computers from spreading germs. To the right is an example image of how dirty the inside of your computer case can get. This example is a dirty computer case fan.
Depending on the environment that your computer operates in determines how often you should clean your computer case. The below list is our recommendation and may change depending upon your computer's environment.
How often should I clean my computer?
The frequency of how often you should clean your computer varies on several different factors. To help you determine how often you need to clean your computer we've created the below chart, check each of the boxes below that apply to your computers environment to see how often to clean your computer.


Where is computer located?
In a home environment
In a clean office environment
In construction / industry environment
In school environment
Computer environment
Have cat / dog in same building as computer
Smoke in same building as computer
Smoke next to computer
Computer is on floor
Room that the computer is in has carpet
Eat and/or drink by computer
Who uses it?
Adult (18 and older)
Young adults (ages 10-18) use computer
Pre-teen (younger than 10) use computer
More than one person uses computer

Based off what has been checked above you should be cleaning your computer every  months.
General cleaning Tips
Below is a listing of general tips that should be taken when cleaning any of the components or peripherals of a computer as well as tips to help keep a computer clean.
  1. Never spray or squirt any type of liquid onto any computer component. If a spray is needed, spray the liquid onto a cloth and then use that cloth to rub down the component.
  2. Users can use a vacuum to suck up dirt, dust, or hair around their computer on the outside case and on their keyboards. However, do not use a vacuum for the inside of your computer as it generates a lot of static electricity that can damage the internal components of your computer. If you need to use a vacuum to clean the inside of your computer, use a portable battery powered vacuum designed to do this job.
  3. When cleaning a component and/or the computer, turn it off before cleaning.
  4. Never get any component inside the computer or any other circuit boarddamp or wet.
  5. Be cautious when using any type of cleaning solvents; some individuals may have allergic reactions to chemicals in cleaning solvents and some solvents can even damage the case. Try to always use water or a highly diluted solvent.
  6. When cleaning, be careful not to accidentally adjust any knobs or controls. In addition, when cleaning the back of the computer, if anything is plugged in, make sure not to disconnect any of the plugs.
  7. When cleaning fans, especially the smaller fans within a portable computer or laptop it's suggested that you either hold the fan or place something in-between the fan blades to prevent it from spinning. Spraying compressed air into a fan or cleaning a fan with a vacuum may cause damage to some fans or in some cases cause back voltage.
  8. Never eat or drink around the computer.
  9. Limit smoking around the computer.
Cleaning tools
Although many companies have created products to help improve the process of cleaning your computer and peripherals, users can also use household items to clean their computers and peripherals. Below is a listing of items you may need or want to use while cleaning your computer or computer peripherals.
Keep in mind that some components in your computer may only be able to be cleaned using a product designed for cleaning that component; if this is the case, it will be mentioned in the cleaning tips.
  • Cloth - A cloth is the best tool used when rubbing down a component; although paper towels can be used with most hardware, we recommend using a cloth when ever possible. Caution: We only suggest you use a cloth when cleaning components such as the outside of the case, a drive, mouse, etc. You should not use a cloth to clean any circuitry such as the RAM or motherboard since they can generate ESD that can damage electronics.
  • Water or rubbing alcohol - When moistening a cloth, it is best to use water or rubbing alcohol. Other solvents may be bad for the plastics used with your computer.
  • Portable Vacuum - Sucking the dust, dirt, hair, cigarette particles, and other particles out of a computer can be one of the best methods of cleaning a computer. Over time, these items can restrict the airflow in a computer and cause circuitry to corrode. Do not use a standard vacuum as it can generate a lot of static electricity that can damage your computer.
  • Cotton swabs - Cotton swaps moistened with rubbing alcohol or water are excellent tools for wiping hard to reach areas in your keyboard, mouse, and other locations.
  • Foam swabs - Whenever possible, it is better to use lint-free swabs such as foam swabs.
Case cleaning
Why? Keeps the appearance of the computer looking new. During cleaning, if ventilation locations are found, these can be cleaned helping the case keep a steady airflow to the computer, keeping components cool and in good working condition.
Procedure: The plastic case that houses the PC components can be cleaned with a lint-free cloth that has been slightly dampened with water. For stubborn stains, add a little household detergent to the cloth. It is recommended that you never use a solvent cleaner on plastics.
Make sure all vents and air holes are hair and lint free by rubbing a cloth over the holes and vents. It is also helpful to take a vacuum around each of the hole, vents, and crevices on the computer. It is safe to use a standard vacuum when cleaning the outside vents of a computer; however, if you need to clean the inside of the computer, use a portable battery powered vacuum to prevent static electricity.
If you are looking for steps on cleaning the inside of the computer, please see our motherboard cleaning section.

CD-ROM or other disc drive cleaning
Why? A dirty CD-ROM drive or other disc drive can cause read errors with CD discs. These read errors could cause software installation issues or issues while running the program.
Procedure: To clean the CD-ROM drive we recommend purchasing a CD-ROM cleaner from your local retailer such as a local Radio Shack. Using a CD-ROM cleaner should sufficiently clean the CD-ROM laser from dust, dirt, and hair.
In addition to cleaning the drive with a special disc designed to clean drives users can also use a cloth dampened with water to clean the tray that ejects from the drive. Make sure however that after the tray has been cleaned that it completely dry before putting the tray back into the drive.

CD / DVD cleaning
Why? Dirty CDs can cause read errors and/or cause CDs to not work at all.
Procedure: Cleaning CDs and DVDs should be done with a cleaning kit but can also be done with a normal clean cotton cloth or shirt. When doing this with a clean cotton cloth or shirt, wipe against the tracks, starting from the middle of the CD or DVD and wiping towards the outer side as shown in the below picture. Never wipe with the tracks; doing so may put more scratches on the disc.

It is recommended when cleaning a CD that water is used. However, if the substance on a CD cannot be removed using water, pure alcohol can also be used.

Floppy drive cleaning
Why? Dirty read/write heads on the floppy drive can cause errors during the reading and/or writing process.
Procedures: The floppy drive can be cleaned two different ways. The first method of cleaning a floppy drive, and our recommended method, is to purchase a kit at your local retail store designed to clean the read/write heads on your floppy drive.
The second method of cleaning the floppy drive is only recommended for experienced computer users. Open the floppy drive casing and physically swab the read/write heads with a lint-free foam swab soaked in pure alcohol, free-on, or trichloroethane. When performing these steps, be extremely careful when cleaning the heads to ensure that you do not lock them out of alignment causing the floppy drive to not work. To help prevent the heads from becoming out of alignment, use a dabbing motion lightly putting the swab on the head and removing it, do not perform a side-to-side motion with the swab.

Hard disk drive cleaning
Why? While hard drives cannot be cleaned physically, they can be cleaned with various utilities on the computer to help it run fast and more efficiently. Utilizing these utilities will prevent the hard drive from slowing down.
Procedure: Refer to our basic troubleshooting section for your operating system for steps that can be done to help improve the performance of your computer.

Headphones cleaning
Why? Headphones that are used by multiple people may need to be cleaned frequently to help prevent the spreading of germs and head lice.
Procedure: If the headphones being used are plastic and/or vinyl, moisten a cloth with warm water and rub the head and earpieces of the headphones. As mentioned earlier in our cleaning tips, it is recommended that if your headphones are being used for a library or school that you do not use any type of disinfectant or cleaning solvent as users may have allergic reactions to the chemicals they contain.
Headphones that have cushions also have the availability of having the cushions replaced. Replacing these cushions can also help keep the headphones clean.
Finally, in regards to headphones and the spreading of head lice, if multiple students are using your headphones, you should consider having the students use their own headphones, using bags that are placed over the headphones, or having headphones that can be wiped with warm water after each student has used the headphones.

Keyboard cleaning
If you're trying to clean a laptop keyboard see document CH000780 for additional help and information. All of the below information applies to standard desktop computer keyboards.
Dust, dirt, and bacteria
The computer keyboard is often the most germ infected items in your home or office, often it will contain more bacteria than your toilet seat. Cleaning it can help remove any dangerous bacteria. Dirt, dust and hair can also build up causing the keyboard to not function properly.
Procedure: Before cleaning the keyboard first turn off the computer or if you're using a USB keyboard simply unplug it. Not unplugging the keyboard can result in causing other computer problems as you may press keys that cause the computer to perform a task you don't want it to do.
Many people clean the keyboard by turning it upside down and shaking. A more effective method is to use compressed air. Compressed air is pressurized air contained in a can with a very long nozzle. Simply aim the air between the keys and blow away all of the dust and debris that has gathered there. A vacuum cleaner can also be used, but make sure the keyboard doesn't have loose "pop off" keys that could possibly be sucked up by the vacuum.
If you wish to clean the keyboard more extensively you'll need to remove the keys from the keyboard. Additional information about doing this is found on document CH001241.
After the dust, dirt, and hair has been removed. Spray a disinfectant onto a cloth or use disinfectant cloths and rub each of the keys on the keyboard. As mentioned in our general cleaning tips, never spray any type of liquid onto the keyboard.
Substance spilt into the keyboard
If the keyboard has anything spilt into it (e.g. pop, cola, Pepsi, Coke, beer, wine, coffee, milk, etc.), not taking the proper steps can cause the keyboard to be destroyed.
Procedure: Below are a few recommendations to help prevent a keyboard from becoming bad once a substance has been spilt within it.
If anything is spilt onto the keyboard turn the computer off immediately or at the very least disconnect it from the computer. Once done quickly flip the keyboard over helping to prevent the substance from penetrating circuits. While the keyboard is upside down, shake the keyboard over a surface that can be cleaned later. While still upside down, use a cloth to help clean out what can be reached. After cleaned to the best of your ability leave the keyboard upside down for at least one night allowing it to dry. Once dry, continue cleaning the keyboard with any remaining substance.
If after cleaning the keyboard you have keys that stick remove the keys and clean below the keys and the bottom portion of the key. Additional information about doing this is found on document CH001241.
Finally, if the keyboard still works but remains dirty or sticky before discarding the keyboard consider trying to wash the keyboard in the dishwasher. This can save some keyboards and is a good last option before resorting to replacing the keyboard. Additional information about doing this can be found on document CH001242.
If after doing all the above steps the keyboard does not function properly or at all it's recommended you discard the keyboard and buy a new one.

LCD cleaning
Why? Dirt, dust, and finger prints can cause the computer screen to be difficult to read.
Procedure: Unlike a computer monitor, the LCD / flat-panel display is not made of glass, therefore requires special cleaning procedures.
When cleaning the LCD screen it is important to remember to not spray any liquids onto the LCD directly, press gently while cleaning, and do not use a paper towel as it may cause the LCD to become scratched.
To clean the LCD screen we recommend that you use a non-rugged microfiber cloth, soft cotton cloth, or Swiffer duster. If a dry cloth does not completely clean the screen, you can apply rubbing alcohol to the cloth and wipe the screen with the damp cloth. Rubbing alcohol is actually used to clean the LCD before it leaves the factory.

Monitor cleaning
Note: This section is for computer monitors if you have a LCD or flat-panelsee our LCD cleaning section.
Why? Dirt, dust, and fingerprints can cause the computer screen to be difficult to read.
Procedure: The glass monitor screen can be cleaned with ordinary household glass cleaner*. Be sure to remove power from the monitor and spray the cleaner onto a lint free-cloth so the fluid doesn't leak into the electrical components inside the monitor. Vacuum off any dust that has settled on top of the monitor, and make sure no books or papers have been placed on the air vents. Obstructed monitor vents can cause the monitor to overheat or even catch on fire.
*Warning: We suggest using a cloth dampened with water when cleaning monitor on a screen that is not made of glass or has any type of anti-glare protection on the screen. Using ordinary household glass cleaner on special screens, especially cleaners with ammonia can remove anti-glare protection and/or other special surfaces.
Other good cleaning solutions
  • Microfiber Towels
  • Swiffer Dusters

Motherboard cleaning
Why? Dust and especially particles of cigarette smoke can build up and corrode circuitry causing various problems such as computer lockups
Note: When inside the computer take the necessary ESD precautions and try to avoid unplugging any cables or other connections.
Procedure: Our recommendation when cleaning the motherboard from dust, dirt, or hair is to use compressed air. When using compressed air, hold it in the up-right position; otherwise, it is possible chemicals may come out of the container that could damage or corrode the Motherboard or other component within the computer. Also, ensure when using compressed air that you always blow the dust or dirt away from the motherboard, or out of the case.
Another good alternative to compressed air is to use a portable battery powered vacuum that can effectively remove the dust, dirt, and hair from the motherboard completely and prevent it from getting trapped within the case. However, do not use a standard electricity powered vacuum as it can cause a lot of static electricity that can damage the computer. When using the vacuum it is vital that you stay a couple inches away from the motherboard and all other components to help prevent contact as well as to help prevent anything from being sucked into the vacuum. Ensure that you do not remove any small components with the vacuum such as jumpers.
Tip When cleaning the inside of the case also look at any fans and/or heat sinks. Dust, dirt, and hair collects around these components the most.

Mouse cleaning
Why? A dirty optical-mechanical mouse (mouse with a ball) can cause the mouse to be difficult to move as well as cause strange mouse movement.
Procedure: To clean the rollers of an optical-mechanical mouse, you must first remove the bottom cover of the mouse. To do this, examine the bottom of the mouse to see which direction the mouse cover should be rotated. As you can see in the below illustration, the mouse cover must be moved counter clockwise. Place two fingers on the mouse cover and push the direction of the arrows.
Once the cover has rotated about an inch, rotate the mouse into its normal position, covering the bottom of the mouse with one hand and the bottom should fall off including the mouse ball. If this does not occur, attempt to shake the mouse gently.
Once the bottom cover and the ball are removed, you should be able to see three rollers located within the mouse. Use a cotton swab, your finger, and/or fingernail and move in a horizontal direction of the rollers. Usually, there will be a small line of hair and or dirt in the middle of the roller, remove this dirt and/or hair as much as possible.
Once you have removed as much dirt and hair as possible, place the ball back within the mouse and place the cover back on.
If the mouse still appears to be having the same issue, repeat the above process; if after several attempts the mouse is still having the same issues, it's likely that your mouse has other hardware issues and we recommend that it be replaced.
Note: Cleaning your mouse pad with a damp cloth can also help improve a computer's mouse movement.
Why? To help keep a mouse clean and germ free it can be helpful to clean the mouse.
Procedure: Use a cloth moistened with rubbing alcohol or warm water and rub the surface of the mouse and each of its buttons.

Palm pilot cleaning
Why? Dirty touch screens can cause difficult navigation.
Procedure: To clean the Palm Pilot Screen, use a soft cloth moistened with rubbing alcohol and rub the screen and the casing of the palm pilot. It is not recommended to use glass cleaner as it could damage plastics over time.
Printer cleaning
Why? Cleaning the outside of a printer can help keep the printer's appearance looking good; and in the case of a printer that is used by many different people, keep the printer clean of germs.
Procedure: First, make sure to turn off the printer before cleaning it. Dampen a cloth with water or rubbing alcohol and wipe the case and each of the buttons or knobs on the printer. As mentioned earlier, never spray any liquid directly onto the printer.
Why? With some printers it may be necessary to clean the inside of the printer to help keep the printer running smoothly.
Procedure: Because of numerous types of printers, different steps in cleaning printers, and printer manufacturer policies on cleaning the inside of the printer, we recommend you obtain the printer cleaning steps from your printer manufacturer.
Scanner cleaning
Why? Flatbed scanners commonly become dirty with dust, fingerprints, and hair. When a scanner is dirty, the images may have distortions. 
Procedure: Clean a flatbed scanner's surface by spraying a window cleaner onto a paper towel or cotton cloth and wipe the glass until clean. As mentioned earlier, never spray a liquid directly onto the component.
To clean the outside of the scanner, the same towel or cotton cloth can be used.
SuperDisk / LS120 cleaning
Why? It is recommended that the SuperDisk / LS120 drive be cleaned regularly to prevent drive heads from becoming dirty.
Procedure: Purchase the SuperDisk cleaning kit available through Imation. Using any other method will void the warranty on your drive.

Read More
Posted in Computer Guidelines, Windows Tips | No comments
Newer Posts Older Posts Home
Subscribe to: Posts (Atom)

Popular Posts

  • Overview of SQL Server security model and security best practices
    This article discusses the security model of Microsoft SQL Server 7.0/2000 and security best practices to help you secure your data.  Securi...
  • System Errors in Networking Meaning & Solutions
    System Errors System error 5 - Access is denied System error 5 because of firewall System error 5 when using net view command in Vista Syste...
  • SQL Server Security Model and Security Best Practices
    Overview of the SQL Server Security Model and Security Best Practices This article discusses the security model of Microsoft SQL Server 7.0 ...
  • List of PC Error Messages and Solutions
    You may came across of different error messages while using computer.Some are easy to understand and some are difficult.You wonder how to so...
  • How to watch online TV?
    I know we all are busy with our daily work, we do not have to time to tally our accounts or do our regular work also. Some times we want to ...
  • Comman Run Time Errors and meaning
    Run Time Error 5 Illegal function call Program error, verify the program has all the latest updates. If updated try reinstalling the progr...
  • Schedule - MEGHDOOT SERVICE PACK-1 ISSUES
    As per the Directorate instructions, PLI/RPLi premium is segregated in First Year Premium and Renewal Premium. This segregation happens o...
  • Pen Drive Recovery Tool
    Find below the Online recovery tool for the Transcend pendrives. A very good tool to recover the data or format the corrupted pendrives. 1) ...
  • Top 10 security enhancements in SQL Server 2005
    As database systems continue to be more widely used to back stores of networked applications, it is increasingly necessary to focus on secur...
  • MailStore Home- Keep all your mails in one place
    We have been  using computers  for quiet some time and of course emails too.  You might have created  number  of email accounts with various...

Categories

  • Computer Guidelines
  • Customer Care
  • DB Tools
  • Drivers
  • Entertainments
  • FAQ
  • For System Administrators
  • FTP
  • General Informations
  • General Knowledge
  • Guidelines
  • Hardwares
  • Health Tips
  • Internet Tips
  • Latest Software Updates
  • Network Trouble shooting
  • Printer Trouble shooting
  • Printing Tips
  • Recovery Tips
  • Registry Tips
  • Registry Tools
  • Security Guidelines
  • Security Tips
  • Software Tips
  • Softwares
  • SQL
  • Technology
  • Tips and Tricks
  • Tools
  • Trouble shooting
  • Useful Softwares
  • Utilities
  • Virus Solutions
  • Websites
  • windows 7
  • Windows Server
  • Windows Tips
  • Windows Vista
  • Windows XP FAQ

Blog Archive

  • ▼  2011 (138)
    • ▼  May (32)
      • Indian Acronyms and Abbreviations
      • Put all your Emails on a USB Drive for Offline Access
      • What is the difference between Cc and Bcc?
      • BSNL 3G Data Card Now at Rs. 1600
      • General Knowledge Questions and Answers
      • 5 Tips to Improve Your Windows 7 System’s Speed
      • SYS Informer v.1.0 Free ( PC Total Info)
      • 7Burn - Burning Studio v.2.0 Free
      • Steganography
      • Screen Resolution Changer
      • MailStore Home- Keep all your mails in one place
      • 5 Simple Tips to Fix a Slow Computer
      • Password Recovery Magic Products with Serial
      • Hiren’s Boot CD 13.2
      • Prime Minister and Council of Ministers - India ( ...
      • Put all your Emails on a USB Drive for Offline Access
      • Best Features of Google Chrome
      • What is the difference between Cc and Bcc?
      • Any Folder as a Photo Folder
      • SQL 2008 Express Editions and Service Packs
      • Put all your Emails on a USB Drive for Offline Access
      • Why Do We Love Skype?
      • Procedure for Schedule Backup in SQL 2008 Express ...
      • How to Make EXE Files Using Notepad
      • How to Protect your Data ?
      • Error in Opening database - Tables ( SQL 2000)
      • Icons, task bar disappears and Windows Explorer do...
      • Tips for Strong Password
      • Disable Network Search by XP
      • How To Change the Default Backup Path in SQL Server
      • How to Manually Uninstall SQL Server 2005
      • XP Services-Not Needed for All
    • ►  April (24)
    • ►  March (29)
    • ►  February (15)
    • ►  January (38)
  • ►  2010 (241)
    • ►  December (55)
    • ►  November (40)
    • ►  October (21)
    • ►  September (35)
    • ►  August (39)
    • ►  July (23)
    • ►  June (5)
    • ►  May (2)
    • ►  April (12)
    • ►  March (4)
    • ►  February (2)
    • ►  January (3)
  • ►  2009 (26)
    • ►  December (5)
    • ►  November (3)
    • ►  October (4)
    • ►  September (5)
    • ►  August (3)
    • ►  July (5)
    • ►  June (1)
Powered by Blogger.

About Me

Unknown
View my complete profile