Now, I need to check this out later, but I am sure there is a method that tells the thread to wait until it is ready for input. Are you monitoring GUI processes only? Isn't [Process.WaitForInputIdle][1] of any help to you? Or am I missing the point? :) ##Update Following a chit-chat on Twitter (or tweet-tweet?) with Mendelt I thought I should update my answer so the community is fully aware.. * `WaitForInputIdle` will only work on applications that have a GUI. * You specify the time to wait, and the method returns a bool if the process reaches an idle state within that time frame, you can obviously use this to loop if required, or handle as appropriate. Hope that helps :) [1]:http://msdn.microsoft.com/en-us/library/kcdbkyt4.aspx