VBS KillExcel进程

Function KillExcelProcess()
    on error resume Next
    CreateObject("WScript.Shell").Run "taskkill /f /im excel.exe "
    CreateObject("WScript.Shell").Run "taskkill /f /im Wscript.exe"
End Function
原文地址:https://www.cnblogs.com/lnd-blog/p/12911874.html