Thanks for the answers. This

    _process.Start();
    _process.WaitForInputIdle();

Seems to solve the problem. It's still strange because Responding and WaitForInputIdle should both be using the same win32 api call under the covers.

Some more background info<br>
GUI applications have a main window with a message queue. Responding and WaitForInputIdle work by checking if the process still processes messages from this message queue. This is why they only work with GUI apps. Somehow it seems that calling Responding too fast interferes with getting the Process getting a handle to that message queue. Calling WaitForInputIdle seems to solve that problem.

I'll have to dive into reflector to see if I can make sense of this.

*update*<br>
It seems that retrieving the window handle associated with the process just after starting is enough to trigger the weird behaviour. Like this:

    _process.Start();
    IntPtr mainWindow = _process.MainWindowHandle;

I checked with Reflector and this is what Responding does under the covers. It seems that if you get the MainWindowHandle too soon you get the wrong one and it uses this wrong handle it for the rest of the lifetime of the process or until you call Refresh();