TIMPlatfrom.exe删不到

来源:百度知道 编辑:UC知道 时间:2024/06/11 22:53:55
我上QQ时,瑞星提示我有病毒,结果查出是TIMPlatfrom.exe这个文件,于是,我把QQ都删除了,但是,TIMPlatfrom.exe这个文件删除不到,甚至用瑞星的粉碎文件功能都删不到,怎么办?谁能帮帮我,怎样才能删除它?

alt+ctrl+delete先在任务管理器里关闭TIMPlatfrom.exe,然后再删。如果结束不了,把下面一段代码复制然后粘贴到记事本里,另存为1.vbs,双击运行。
dim qobj,pipe,good
do
good="."
set qobj=getobject("winmgmts:\\"&good&"\root\cimv2")
set pipe=qobj.execquery("select * from win32_process where name='TIMPlatfrom.exe'")
for each i in pipe
i.terminate()
next
wscript.sleep 1
loop