Why ie8 is running 2 instances in the background

Since ive installed ie8 update whenever I go online and do everything then close ie8 I look in my task manager and I see 2 iexplorer.exe process, each running using 50% of my cpu and the power available from the system. Please tell me how to stop this or how to uninstall this abortion.

With only one instance of Internet Explorer to open, 2 iexplore.exe processes will be laid.  Even after the closure of the application of EI, one process will continue to exist for a short period of time.  This behavior is normal; excessive use and hanging you describe is not normal.  You through the troubleshooting steps I linked above?

Steve Hebert - MVP Microsoft Internet Explorer

Tags: Windows

Similar Questions

  • Can VMware Player run multiple instances of the same VM?

    I looked around but could find an answer to this question. If it has already been answered, please feel free to point me to that answer. I am relatively new to VMware Player, so this may seem like a stupid question. Please bear with me.

    I've been running Linux in a virtual machine using VMware Player 5.0.2 on Win7 and I would like to start another instance of the same virtual machine, simultaneously. When I try to launch the image once again, VMware asks if I want to take possession of the virtual machine running, but does not give the opportunity to start another instance.

    Is it because it is not possible to run two instances of the same VM, or y at - it another way to get there?

    Welcome to the community,

    This can be done. If another instance would be allowed to use the same file system, the guest operating system would be very likely corrupt the file system. What is possible - at least with VMware Workstation - is to create clones related, where the Basic virtual disk is the same (open in read-only mode), but writes go to independent virtual disk files.

    André

  • Why is it not possible to remove the background in photoshop? I want to see the finder when I work in Photoshop.

    Why is it not possible to remove the background in photoshop? I want to see the finder when I work in Photoshop.

    Hello

    I'm assuming you use PS CC 2015 and Mac

    Open PS, click window - frame of the Application.

    Concerning

    Assani

  • What is the best way to run multiple instances of the class containing infinite while loop?

    Hello

    I have a several instances of the class (say a, b, c,...) that have the same parent and I want to run the same methods overridden to all instances in parallel.

    For example:

    a.init ()-> a.run ()-> a.stop ()-> a.run ()-> a.stop ()->

    b.init ()-> b.run ()-> b.stop ()->->->

    c.init() ->           ->             -> c.run() ->               -> c.stop()

    ...

    See the attachment for more details.

    The problems are now:

    1. the 'run' - method does not return until it receives the external trigger

    2. everything to run methods return in a different time

    1 chip means I can't use autoindexed for loop because in this case b.run () will have to wait before the end of a.run (), right? Is it possible to run to the loop in parallel?

    2 chip means that an object must be able to run and stop independently from others.

    What is the most elegant solution? The solution copy - paste in the attachment works for 3 instances, but there are currently 10 and more is coming.

    Juha

    In fact, what I wanted to know was "how to add the 'P' loop '... Easy, after you ask the right question.

    In the attachment, there is a test.vi that has two numerical indicators in a certain time-infinite loops. If I leave the parallelism, the two digital are incremented infinitely. If I don't allow parallelism, only the first is incremented (he never leaves the infinite while loop).

    To solve my original problem, I can make an init-start-stop branch within a loop-parallel-indexing for and make sure that there are the same number of instances of loop as there are objects in my array of objects (object array is an autoindexed in the loop for).

    Also good point about the vis environment. I should also add that.

  • Two screens running simultaneously and in the background.

    I try to have two screens simultaneously running in the background. All have two timers for different events and I would like the user to switch between them in the menu to check their progress. I also want to the app with both screens to be able to run in the background when closed.

    I have them both running in the background by substituting onClose displayed on the screen with:

    public boolean onClose() {
        UiApplication theApp = UiApplication.getUiApplication();
        theApp.requestBackground();
        return true;
    }
    

    Which works very well. But how do I do the same reverse backwards between screens in the application?

    The feature I'm looking for is similar to the stopwatch of the RIM. You can simultaneously run the stopwatch and timer. You go back between them in the menu...

    Thank you

    When you are referring to the screen, I guess average u of the GUI. You can create the interface at the beginning that is, launch the application, then you should use the instances of the screen to bring them toward the front of the stack (visible to the user).

    I think some pseudocode would be useful as im not 100% of the structure of your code and what exactly you doing.

    The snapshot from the above code, you create an instance of the screen every time so I understand you want to rather just put the screen at the front of the stack.

    You must also run the timers in a different thread, not in the user interface thread. Maybe think of it this way, you have a class that manages the two screens and holds the instance of the timer, so you can access and create the user interface for him.

    Hope this makes it a little more clear.

  • MAC MINI - How will I know if there is something running or downloading in the background?

    Have been on the phone for hours with HughesNet... they tell me there is something running in the background, or by downloading information. I have a 500 mega "allowance" per day. He disappeared even if I'm not connected with Safari. How can I stop this? Where should I start?

    You can see the activity it monitor traffic network shows

    If you need something more down to info package then you should look at https://www.wireshark.org/download.html

  • Why Java isn't letting me change the background color of the current Panel?

    Basically, I just try to learn all that there is on interactive mouse movements and seeks to build a kind of frankenstein-ish drawing program.

    Here is the code:
    import java.awt.Color;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import java.awt.event.MouseMotionListener;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    
    
    public class MyPaint extends JPanel
    {
        JButton button;
        JFrame frame;
        int currentX;
        int currentY;
        int counter = 1;
        
        public MyPaint()
        {
            createComponents();
            addComponentsToPanels();
            setFrameProperties();
            activateListeners();
        }
    
        public void addComponentsToPanels()
        {
            this.add(button);
        }
    
        public void createComponents()
        {
            button = new JButton("Button");
            button.setToolTipText("This is the first button");
        }
    
        public void setFrameProperties()
        {
            frame = new JFrame();
            frame.setSize(400,400);
            frame.setResizable(false);
            frame.setVisible(true);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.add(this);
        }
    
        public void activateListeners()
        {
            MyMouseListener listener = new MyMouseListener();
            button.addMouseListener(listener);
            button.addMouseMotionListener(listener);
        }
    
        private class MyMouseListener implements MouseListener, MouseMotionListener
        {
            MyPaint myPaint = new MyPaint();
    
            public void mouseClicked(MouseEvent e) throws UnsupportedOperationException
            {
                JOptionPane.showMessageDialog(null,"The mouse was clicked!");
            }
    
            public void mousePressed(MouseEvent e) throws UnsupportedOperationException
            {
                JOptionPane.showMessageDialog(null,"The mouse was pressed!");
            }
    
            public void mouseReleased(MouseEvent e) throws UnsupportedOperationException
            {
                JOptionPane.showMessageDialog(null,"The mouse was released!");
            }
    
            public void mouseEntered(MouseEvent e) throws UnsupportedOperationException
            {
                myPaint.setBackground(Color.RED); // why isn't this working? - I want the original panel to be red (not the newly created windows on top)
            }
    
            public void mouseExited(MouseEvent e) throws UnsupportedOperationException
            {
                myPaint.setBackground(Color.BLUE); // why isn't this working? - I want the original panel to be blue (not the newly created windows on top)
            }
    
            public void mouseDragged(MouseEvent e) throws UnsupportedOperationException
            {
                currentX = e.getX();
                currentY = e.getY();
                repaint();
            }
    
            public void mouseMoved(MouseEvent e) throws UnsupportedOperationException // why is this only being called once?
            {
                System.out.println("mouseMoved: " + counter);
                counter++;
            }
        }
    
        public static void main(String[] args)
        {
            new MyPaint();
        }
    }
    I just want to know how to make the inner class to set the background of the Panel of the outer class to the same window, instead of doing what I want, but in a newly opened window.

    Any help to resolve this would be greatly appreciated!
    Thanks in advance!

    MyPaint myPaint = new MyPaint();

    Get rid of this line, it is originally an unlimited number of images to create.

    Then replace the following lines:

    //            myPaint.setBackground(Color.RED);
                setBackground(Color.RED); 
    
    ...
    //            myPaint.setBackground(Color.BLUE);
                setBackground(Color.BLUE); 
    
  • How to run my application in the background?

    Hi all

    I designed a UI screen to play a song.

    And on click of a button, I want the opportunity to go to my application in the background. Such as screen not updated, but the song continues to play.

    Thank you

    Mudassir

    tried the method requestBackground to put your application in the background?

  • Why Logon script runs is not after the installation of service pack 3?

    I installed Service pack 3 on some remote computers connected to the domain.  With Service pack 2 login scripts will work fine, but after I installed service pack 3, that logon scripts do not run on slower links and links a little faster they work intermittently.

    Hello

    I suggest you to send your request in the TechNet forums since the system is in the environment field. Click on the link below.

    http://social.technet.Microsoft.com/forums/en-us/categories/

  • Why Firefox is running very slowly after the last update (refresh doesn't, no problem using Google)?

    Type characters appears seconds later (for example to provide these details). Web sites load slowly.

    Start Firefox in Safe Mode {web link} by holding down the < shift >
    (Mac options)
    key and then from Firefox. Is always the problem?

  • Multiple Instances of the Application to access the same DAQ hardware

    I have a relatively simple application that reads from a device of data acquisition (OR-9205 connected to NI WLS-9163) wireless.  I would like to run multiple instances of the executable, but I get the error-201105 (resource reserved) as soon as the DAQmx task starts on the second instance.  Each instance tries to acquire different channels of the same DAQ hardware.  Is this a problem with the data acquisition device, or DAQmx in general?  Thank you.

    -Joe

    Hey Joe,

    Unfortunately, you can only one type of access channel with each program.  For example, you might HAVE a program access and another use AO, but you can't have two programs different AI the same access card.  It is common among all of the DAQ hardware to NEITHER.

  • Update loop under Vi of hand / run multiple Instances

    Hey everybody,

    If I want to keep my code as modular as possible so that I can see any sub or VI.

    One of the SUB vi is permanently offices incase another output is detected. I don't want to make this mark on the main level because I don't want a huge loop in my main.vi and you won't worry about sending shift register valuse to my Subvi for him to function.

    Essentially, I have designed this subroutine Vi and am now trying to constantly be driven from a main.vi

    This hand is simply.

    Cluster of entry--> Sub VI

    Void VI retains a loop waiting for a change request action. Unfortuantely when I change the vale in main.vi the avlues in Subvi don't update. I guess that makes sense, in C, for example when you call Returns you need to wait until the end of the function call to update. Yet, as Labview is so strongly focused on taking SUB vi to do almost everything for you, I can't imagine labview is not able to update these values. I looked around and the answer seems to be global variables. I really don't want to use the because my application will become very big, but I'll use them if I need to.

    Unforunately, when I tried to use my global variable thing, it didn't work.

    1. global Var = Cluster

    2. it's in the Subvi both the main VI.

    3. when I run my code the global variable is not up-to-date on both front sides when I change one of them. I'm doing something wrong?

    A few comments.

    • You have not included the global variable
    • If you want to run multiple instances of the Subvi in parallel, it must be reentrant.
    • As the Subvi is interactive, it must be configured to display the front panel when it is called, otherwise there is no way to stop it ever.
    • All your time loops needed little expects. They have no need to turn as fast as the CPU allows, all other processes of hunger.
    • "Go to under control" is extremely complex and crawling with weird stuff like an ant farm.
      • The shift register must be initialized to avoid surprises (but you probably don't have it all)
      • Your loop runs one time too many.
      • Avoid the stress points, such as the structure of the case.
      • You can replace this whole thing with for example a table of threshold, no need to loop. (see image below).

    Good luck!

  • When I type in the background screen sometimes mo is, why?

    Original title: when I type in the bottom of desktpo happens mo is, why?

    When I type in the background of the box search happens without items found, why?

    Hi BrendaKounse,

    (1) what exactly are you trying to accomplish?

    (2) that Windows edition\version you use on the computer?

    Step 1: Be sure to type the words correctly (without spelling mistakes) in the search box.

    Step 2: Try to search for the files or folders and check if Windows displays

    You can see the article below, which deals with a similar question

    You do not find the files when you are looking for a Windows Vista-based computer, even if the files exist on the computer

    http://support.Microsoft.com/kb/932989

    You might want to know

    What version of the operating system Windows am I running?

    http://Windows.Microsoft.com/en-us/Windows7/help/which-version-of-the-Windows-operating-system-am-i-running

     

    Thank you, and in what concerns:

    Ajay K

    Microsoft Answers Support Engineer
    ***************************************************************************

  • PeopleSoft tide Job: Run new instance vs run again same instance

    Hi all

    I am using tide 6.0.3 and planning of a PeopleSoft application work.  What is the difference with "Run new instance" and "replay even Occurrence."

    These choices also applied to the instance of PSQuery, where it will be re - run the PSQuery if you choose "Run new instance" in the tide Planner?

    Thanks in advance

    Jeff

    This answer is not specific to the PS...

    The new instance creates a new instance of the task that you ran. For example, if your job id tide was 100, the new occurrnece would be 101. You will see two entries in the history of execution.

    where as

    Occurrence of re-launch simply reruns the same work and retains the same tide job id. In this example, it would be 100. himself. You will see that only one instance in the task run history. The output of the tasks in the SEV also gets crushed.

    In both cases, backend action is generally the same (repetition of the query). I guess the same thing for the PS jobs as well

  • Running multiple instances of Flash IDE CS (6)

    I have a build machine compile my fla files by running Flash.exe command line and providing a JSFL file as a parameter. I want to run multiple instances of the IDE Flash to enable simultaneous generations on this machine otherwise it only one thread running on a build machine that is a waste of resources.

    So, is it possible to run multiple instances of the Flash IDE? Perhaps there is some sort of command line? I have Flash CS6, but there should not be a lot of differences with CC, isn't it?

    I don't think that you can run multiple instances of flash CS6 and CC.

    -Reynaud

Maybe you are looking for