Process[] allExcel = Process.GetProcessesByName("EXCEL");
for(int i = 0; i < allExcel.Length; i++)
{
allExcel[i].Kill();
}