In a vbscript, I open an Excel file to read a few items from it, then close it. I make no changes. However, even though I quit Excel, the process stays in Task Manager, until my script exits.
Set objExcel = CreateObject("Excel.Application")
objExcel.Application.Visible = False
Set ExcelFile...