怎么编写CMD文件删除menu.exe进程

来源:百度知道 编辑:UC知道 时间:2024/05/15 14:28:31
怎么编写CMD文件删除menu.exe进程
我的编写是
:of
taskkill /s /f /im menu.exe
goto:

可以用
但是过几秒钟,这个进程有自动弹出来了
谁可以告诉我一个可以让他一弹出来就结束的编写方法啊
谢谢了

ntsd -c q -p PID
你那种也是杀进程 你得情况是服务开启了 你可以尝试停止进程得服务

:of
if exist %systemroot%\explorer taskkill /f /im menu.exe
goto:
Next
这样,只要explorer存在,它就会不停的终止进程
最好用冰刃