@echo off
wmic process where name='ctfmon.exe' delete
echo The process ctfmon.exe has been terminated.
exit
关闭制定进程后,关闭cmd窗口
本文介绍了如何使用WindowsManagementInstrumentationCommand(WMIC)来终止名为ctfmon.exe的进程,并在操作后自动关闭cmd窗口。
@echo off
wmic process where name='ctfmon.exe' delete
echo The process ctfmon.exe has been terminated.
exit
关闭制定进程后,关闭cmd窗口
2354

被折叠的 条评论
为什么被折叠?