I know, this is a older Thread, but i think i have found a good solution for the "Game minimize it self at Start problem"
I have write a batch that kills the Matrox.PDesk.Core.exe Process before the Game starts,
and restart the Process after 40 Secounds.
Works very well for me. Tested with Test Drive Unlimited.
For example:
Code:
taskkill /IM Matrox.PDesk.Core.exe /F
start TestDriveUnlimited.exe
ping /n 40 localhost >nul
C:
cd "C:Program Files (x86)Matrox GraphicsPowerDesk"
start Matrox.PDesk.Core.exe
exit
with this Code you can create the Batch for your Game.
Copy the Batch in you Game-Installfolder, make a Shortcut to the Desktop and run it. You will see, it works.
The Commandline close it self after restart the Matrox.PDesk.Core.exe Process.
You can also change the Time for restart the Matrox.PDesk.Core.exe Process after killing.
You need only change the value /n 40 = 40 sec to another value. Maybe you need a higher value. For TDU on my System was 40 sec. good.
Dont forget to edit the Programmname and Paths for you Game/System.
Sry for my bad english. I hope it helps someone.