Hello,I am trying to use taskkill in matlab to kill the excel files which are running .But ,'taskkill' is not getting recognised as an internal or external command in Matlab.Could anyone please help me with this. :
6 次查看(过去 30 天)
显示 更早的评论
Code: system('taskkill \F \IM EXCEL.EXE')
1 个评论
Eddie Irvine
2021-4-4
编辑:Eddie Irvine
2021-4-4
Hi,
system('taskkill /F /IM EXCEL.EXE')
and
system('taskkill /F /IM SCREENSKETCH.EXE') (for Snip & Sketch application in Windows10)
work smoothly in my Windows10-64bit computer,
with MATLAB2020a.
Two occurance of '\' in the above comment by Adam Danz is replaced with '/' and this avoided the error such as:
ERROR: Invalid argument/option - '\F'.
Type "TASKKILL /?" for usage. )
With kind regards,
EI
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!