I\'m using this:
var proc2 = Process.Start(Path.GetFullPath(filename)); proc2.Exited += (_, __) => { MessageBox.Show(\"closed!\"); };
You need to set Process.EnableRaisingEvents to true.