User Tools

Site Tools


en:troubleshooting:explorer_hack

Explorer Hack

Especially under Win 7 several games show wrong colors. This may look like this:

You can clearly see how the palette of the game Starcraft Broodwar does not appear to be set correctly in its main campaign menu of version 1.16.1. Also the rest of the game shows similar problems.

The problem can be solved for most games by stopping the explorer.exe before playing. As long as it is running or restarted, the color errors occur. Therefore it makes sense to point to a batch file instead of the usual program shortcut, which first closes the Explorer, starts the game, and after finishing the game starts the Explorer again. In this way it is relatively convenient to start the game without getting the color problems. A generic variant would look like this:

Example Script

For example, an init script can have the following structure:

starter.bat
echo off
cls
echo Killing explorer.exe...
rem ping 127.0.0.1 -n 2
taskkill /f /IM explorer.exe
pause
rem ping 127.0.0.1 -n 2
echo Starting <game name> ...
cmd.exe /C start /affinity 1 <game executable>
rem <Press Enter to restart Explorer>
pause
cls
echo Restarting explorer.exe...
start explorer.exe
exit

The <game name> is a meaningful name, so that it is clear what happens next. <game executable> means the .exe file, which would otherwise usually be started via the shortcut or directly. Now you can let already existing desktop or start menu shortcuts point to it and assign them the icon from the binary. So the whole thing looks exactly as if everything would run normally, only that before the game the query occurs so that the Explorer has enough time to vanish from memory before the game is started.

[ Troubleshooting ] [ Games Database ]

This website uses cookies. By using the website, you agree with storing cookies on your computer. Also you acknowledge that you have read and understand our Privacy Policy. If you do not agree leave the website.More information about cookies
en/troubleshooting/explorer_hack.txt · Last modified: 2022-08-05-16-19 by 7saturn

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki