explorer.exe or desktop stops working ....

Page 1 of 2 12 LastLast

  1. Posts : 236
    Windows 7 Ultimate x64
       #1

    explorer.exe or desktop stops working ....


    Sometimes when in the middle of a racing game Windows suddently goes out of "full Screen mode" minimizing the game, and showing me the desktop and a windows saying, that either my desktop or in some other cases explorer.exe has stopped working and Windows is seeking for a solution. If I then click "cancel", my game it popping up again, and of cource my car is WAY out in nowhere because of this .

    Is it possible to set Windows 7 Ultimate up, so it will NOT show these fault-messages, and let me play on? Nomatter if it is explorer.exe or my desktop that did not work, both are allways in good shape when I quit the game, so I don't NEED to be told this (especially not in the middle of a high intense game )
      My Computer


  2. Posts : 5,807
    Windows 7 Home Premium x64 - Mac OS X 10.6.4 x64
       #2

    Sven said:
    Sometimes when in the middle of a racing game Windows suddently goes out of "full Screen mode" minimizing the game, and showing me the desktop and a windows saying, that either my desktop or in some other cases explorer.exe has stopped working and Windows is seeking for a solution. If I then click "cancel", my game it popping up again, and of cource my car is WAY out in nowhere because of this .

    Is it possible to set Windows 7 Ultimate up, so it will NOT show these fault-messages, and let me play on? Nomatter if it is explorer.exe or my desktop that did not work, both are allways in good shape when I quit the game, so I don't NEED to be told this (especially not in the middle of a high intense game )
    It seems like the game is causing an issue...have you tried compatibility mode options for the game (and giving it admiistrator rights?)

    If that doesn't work and most of the time it is Explorer.exe...you COULD kill explorer right before playing the game
      My Computer


  3. Posts : 1,660
    Windows 8 Pro (32-bit)
       #3

    If you know a little scripting, you could change the shortcut to go to a command that automatically kills Explorer.exe before launching the game binary.
    I'm currently researching this. so far I have:

    to kill explorer vis command, use
    Code:
    taskkill /F exploere.exe
      My Computer


  4. Posts : 5,807
    Windows 7 Home Premium x64 - Mac OS X 10.6.4 x64
       #4

    IceFire said:
    If you know a little scripting, you could change the shortcut to go to a command that automatically kills Explorer.exe before launching the game binary.
    I'm currently researching this. so far I have:

    to kill explorer vis command, use
    Code:
    taskkill /F exploere.exe
    Code:
     
    @echo off
    taskkill /IM explorer.exe /F
    ".exe" of the program to run...ex notepad.exe
      My Computer


  5. Posts : 5,807
    Windows 7 Home Premium x64 - Mac OS X 10.6.4 x64
       #5

    Here is my test bat that demonstrates what will happen

    SAVE ALL OPEN WINDOWS BEFORE YOU RUN IT!!!!

    Attachment 42351
      My Computer


  6. Posts : 5,807
    Windows 7 Home Premium x64 - Mac OS X 10.6.4 x64
       #6

    I decided to be really nice...

    It now asks you and keeps your other windows opened...

    Attachment 42352

    Code:
     
    @echo off
    taskkill /IM explorer.exe /F
    echo insert program path+.exe here
    :M1
    echo Do you want to restart explorer (y/n)?
    set /p choice=":"
    if %choice% == y (
     explorer.exe
     pause
     exit
       )
    goto M1
    Erase the echo in the third line and input the path to the exe and you will be golden
      My Computer


  7. Posts : 5,807
    Windows 7 Home Premium x64 - Mac OS X 10.6.4 x64
       #7

    Lets take the concept...EVEN FURTHER!!!!

    Code:
    @echo off
    taskkill /IM explorer.exe /F
    echo Insert the full path to the executable to run
    set /p exetr=":"
    %exetr%
    :M1
    echo Do you want to restart explorer (y/n)?
    set /p choice=":"
    if %choice% == y (
     explorer.exe
     pause
     exit
       )
    goto M1
    Now we have a bat that kills explorer...runs the executable that you enter to run in the path...restarts explorer when you exit the game (if you want)
      My Computer


  8. Posts : 5,807
    Windows 7 Home Premium x64 - Mac OS X 10.6.4 x64
       #8

    I just realized that the bat pauses until the executable gets done running (hence the game)...

    to minimize the effort and make this streamless...make the following change
    Code:
    @echo off
    taskkill /IM explorer.exe /F
    echo Insert the full path to the executable to run
    set /p exetr=":"
    %exetr%
    explorer
    This should handle your issue. Make sure to run the bat as an admin
    Attachment 42353
      My Computer


  9. Posts : 28
    Windows 7 Ultimate 64bit
       #9
      My Computer


  10. Posts : 845
    Windows 7 - Vista
       #10
      My Computer


 
Page 1 of 2 12 LastLast

  Related Discussions
Our Sites
Site Links
About Us
Windows 7 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 7" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 02:56.
Find Us