[EMAIL PROTECTED] schrieb:
> Hello,
> 
> I'm new to Python. I have a small task to do. I need to be able to
> find a running app (preferrably by name) and kill it. This is for the
> XP environment. What is best way to do this?
> Thanks,
import os

os.system('taskkill /IM explorer.exe')

cheers
  Paul

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to