Skip to main content

Internet Explorer is not responding: try troubleshooting steps

This is the best way to let us know when Internet Explorer stops responding.
Problem description
It's hard to determine exactly what causes Internet Explorer to stop responding (this is also called an application hang or, simply, a hang), but it's usually due to one of the following:
• Spyware, adware, or other malicious software: If you have downloaded free software from the Internet, you might have inadvertently downloaded spyware with it. Spyware is software that can display advertisements (such as pop-up ads), collect information about you, or change settings on your computer, usually without your permission. Don't worry, you can usually remove spyware.
• Internet Explorer add-ons: Add-ons are software "extras" that add features or tools (an Internet toolbar for example) to Internet Explorer.
• Computer viruses: If your computer has a virus, the virus can cause Internet Explorer to stop responding.
________________________________________
Troubleshooting steps
We do not have a specific solution for you at this time, but here are a number of steps that you can take to try to fix the problem.
1. Install the latest security updates for Internet Explorer 6
These updates addresses many issues that have caused Internet Explorer to stop responding.
Install latest security updates for Internet Explorer 6.
2. Make sure your Windows software is up to date.
The Windows Update website provides free updates for the Windows operating system software and hardware. Updates fix issues in the software and help protect against known security threats. To check your computer for updates, see the Microsoft Update website.
3. Install, run, and regularly update your anti-spyware and anti-adware.
To view a list of Microsoft and non-Microsoft anti-spyware and anti-adware software that you can download, see Security software: Downloads and trials.
If you are unfamiliar with spyware or adware and would like to learn more, see More Information about Spyware and Adware.
4. Turn off unfamiliar Internet Explorer add-ons.
Add-ons are software "extras" that add features or tools (an Internet toolbar for example) to Internet Explorer. When you visit a website, an add-on might be downloaded without your knowledge, or you might be prompted to download an add-on. These add-ons can cause Internet Explorer to run slowly or hang.
To learn how to turn off Internet Explorer add-ons, see A Workaround is Available: Turn Off Internet Explorer Add-ons.
If you turn off an add-on, you can always turn it back on again.
5. Update your antivirus software and perform a check on your computer.
If your antivirus software isn't up to date, it might miss new viruses that have come out since you last updated. To learn more about antivirus software, see Antivirus software: Frequently asked questions.
If you don't have antivirus software installed, see the Security software: Downloads and trials page. From this page, you can download tools to help you keep your computer secure.
6. Visit a Microsoft Internet Explorer 6 newsgroup.
This is an open forum where you can read about other issues that people using Internet Explorer 6 are having. You can post your question, and another user in the group might be able to answer it. See Microsoft Internet Explorer 6 Newsgroups.
7. Check out the Microsoft Knowledge Base.
There are many Knowledge Base articles on the Microsoft Help and Support website that might also help you solve this problem. Knowledge Base articles are often written with the technical professional in mind. Depending on your level of familiarity with computers and technical terminology, you might not be comfortable performing the procedures described in Knowledge Base articles. If this is the case, you might want to seek assistance from the Microsoft Internet Explorer 6 Newsgroups. If you're interested in exploring these articles, please follow these steps:
1. Go to Microsoft Help and Support.
2. Click the Search (KB) tab.
3. In the Search Product field, select Internet Explorer 6.0.
4. In the For field, type Internet Explorer not responding.
5. In the Show results for field, select This product only.
6. From the Search Type box, select Full Text.
7. Under Categories, make sure the check boxes for How To Articles, Downloads, and Troubleshooting are selected.
8. Click the search arrow to begin the search.
________________________________________
Additionang
To learn more about troubleshooting common errors, go to Microsoft Online Crash Analysis: Help, Support, and Tools.
________________________________________
More Information about Spyware and Adware
Spyware is software that can display advertisements (such as pop-up ads), collect information about you, or change settings on your computer, generally without appropriately obtaining your consent. The information spyware collects can range from all the websites you visit to sensitive information, including user names and passwords. You could become vulnerable to spyware if you download music from file-sharing programs, free games from sites you don't trust, or other software programs from unknown sources.
To learn more about spyware and how it affects your computer, read What is spyware?
Adware is advertising that is integrated into software. Adware is often combined with another application that is provided at no charge as long as the user agrees to accept the adware. Makers of adware, spyware, and other unwanted software might disguise their programs as anti-spyware tools. Consider using the software referred to on this page or ask someone you trust to recommend a tool.
To learn more about adware and how it affects your computer, read Adware and Bad Things it Does and How to Protect Your Computer from Spyware and Adware.
________________________________________

Comments

Popular posts from this blog

JAVA Scrollbar, MenuItem and Menu, PopupMenu

ava AWT Scrollbar The  object  of Scrollbar class is used to add horizontal and vertical scrollbar. Scrollbar is a  GUI  component allows us to see invisible number of rows and columns. AWT Scrollbar class declaration public   class  Scrollbar  extends  Component  implements  Adjustable, Accessible   Java AWT Scrollbar Example import  java.awt.*;   class  ScrollbarExample{   ScrollbarExample(){               Frame f=  new  Frame( "Scrollbar Example" );               Scrollbar s= new  Scrollbar();               s.setBounds( 100 , 100 ,  50 , 100 );               f.add(s);               f.setSize( 400 , 400 );               f.setLayout( null );               f.setVisible( true );   }   public   static   void  main(String args[]){           new  ScrollbarExample();   }   }   Output: Java AWT Scrollbar Example with AdjustmentListener import  java.awt.*;   import  java.awt.event.*;   class  ScrollbarExample{        ScrollbarExample(){               Frame f=  new  Frame( "Scro

Difference between net platform and dot net framework...

Difference between net platform and dot net framework... .net platform supports programming languages that are .net compatible. It is the platform using which we can build and develop the applications. .net framework is the engine inside the .net platform which actually compiles and produces the executable code. .net framework contains CLR(Common Language Runtime) and FCL(Framework Class Library) using which it produces the platform independent codes. What is the .NET Framework? The Microsoft .NET Framework is a platform for building, deploying, and running Web Services and applications. It provides a highly productive, standards-based, multi-language environment for integrating existing investments with next-generation applications and services as well as the agility to solve the challenges of deployment and operation of Internet-scale applications. The .NET Framework consists of three main parts: the common language runtime, a hierarchical set of unified class librari

C++ this Pointer, static, struct and Enumeration

C++ this Pointer In C++ programming,  this  is a keyword that refers to the current instance of the class. There can be 3 main usage of this keyword in C++. It can be used  to pass current object as a parameter to another method. It can be used  to refer current class instance variable. It can be used  to declare indexers. C++ this Pointer Example Let's see the example of this keyword in C++ that refers to the fields of current class. #include <iostream>    using   namespace  std;   class  Employee {       public :           int  id;  //data member (also instance variable)               string name;  //data member(also instance variable)            float  salary;          Employee( int  id, string name,  float  salary)             {                   this ->id = id;                  this ->name = name;                  this ->salary = salary;            }             void  display()             {                 cout<<id<< "  " <<name<&