Killing processes in Vbscript

后端 未结 3 1816
日久生厌
日久生厌 2021-01-28 07:57

I am trying to kill all instances of a process called \"AetherBS.exe\" but the following VBscript is not working. I am not exactly sure where/why this is failing.

So ho

3条回答
  •  梦如初夏
    2021-01-28 08:24

    Try out below with batch script

    wmic path win32_process Where "Caption Like '%%AetherBS.exe%%'" Call Terminate
    

    from cmd line use

    wmic path win32_process Where "Caption Like '%AetherBS.exe%'" Call Terminate
    

提交回复
热议问题