After ExcelApplication.Quit (), add the following code.
It will destroy the excel application from the process.
Process[] Proc = Process.GetProcessesByName("Excel"); foreach (Process p in Proc) { if (p.MainWindowTitle == "") p.Kill(); }
Tagore peethala
source share