[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[文本处理] 批处理命令taskkill 错误提示,无法正常结束进程

碰到一个机器,bat文件执行无效

是不是系统哪里服务没有启动,

path路径设置问题

求大神解答

回复 8# yahong1001


wmic process where "name='wscript.exe'" call terminate
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

试试 tskill 和 wmic
CrLf 发表于 2014-10-7 20:16


使用tskill命令,提示找不到进程PID 有进程在也是提示找不到
wmic  这个就不会用了

TOP

还真是没遇到过这样的提示,,命令书写没有错,,我这64位win7,sp1使用正常。。
问题解决后,请在标题前面注明[已解决],并给回答者加分——化繁为简,提高工作效率!

TOP

回复 5# CrLf


    安装了SCOM才会有这个文件
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

http://blogs.technet.com/b/smsan ... nstall-sdk-mof.aspx
大意貌似是 wmi 命名空间错误引发的
着重看这几段:
Cause: This can occur if the EventTrace class is missing from the root\wmi namespace on the client.

Resolution: To resolve this issue, copy mom_tracing.mof from Program Files\System Center Operations Manager 2007 on a working machine to the same directory on the affected machine. Then on the affected machine run:

mofcomp mom_tracing.mof


This will most likely lead to an error looking for the EventTrace class in WMI which the mom_tracing.mof is dependent upon. This can be verified by running wbemtest and connecting to Root\WMI, then doing a recursive Enum of the classes and looking for EventTrace as a class.

就是叫你去正常的电脑上拷一个 mom_tracing.mof,然后用 mofcomp 加载它
-------------------------------------------------------------------------
第一次知道,原来 taskkill 还跟 wmi 有关系,涨姿势了,但为毛我电脑上没有 这个 mom_tracing.mof

TOP

回复 2# Batcher
文件存在,拷贝一个也是不行

TOP

试试 tskill 和 wmic

TOP

C:\Windows\System32\taskkill.exe
这个文件存在吗?
从其它电脑复制这个文件覆盖到这台电脑可以吗?
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

返回列表