You can do the following. Run the follong code to see if MS Word is running and if it is it will kill the process. using System.Diagnostics; private Process[] WordProcessList; ..... int index; WordProcessList = Process.GetProcessesByName("WINWORD"); for( index = 0; index < WordProcessList.Length; index++) { WordProcessList[index].Kill(); }