Using probably isn't doing what you want to here since Dispose() gets called as soon as p goes out of scope. This may abort doesn't shut down the process before it has a chance to do anything, but I haven't tested that. (tested).
Counter-intuitively, for a Process, Close() only releases resources but leaves the program running. CloseMainWindow() can work for some processes, and Kill() will work to kill any process. Both CloseMainWindow() and Kill() can throw exceptions, so be careful if you're using them in a finally block.
To finish, here's some code that waits for processes to finish . Although you should probably test it firstbut doesn't kill off the processes when an exception occurs. I'm not saying it's better than Orion Edwards, just different.
// note many properties are unavailable after process exits if//if (!p.HasExited ) // If you want to processes will still be running // but CloseMainWindow() or Kill() process instead, wrap in try{} p.Close(); can throw exceptionsI didn't bother Kill()'ing off the processes because the code starts get even uglier. Read the msdn documentation for more information.
