' Kill Lingoes
' If loop, the process Wscript.exe will live in process list. It will excute evry 1000ms, till you have to kill it by youself.
dim qobj,pipe,good
'do
good="."
set qobj=getobject("winmgmts:\\"&good&"\root\cimv2")
set pipe=qobj.execquery("select * from win32_process where name='Lingoes.exe'")
for each i in pipe
i.terminate()
next
wscript.sleep 1000
'wscript.echo "again"
'loop