10 2012 档案
import pythoncom
摘要:import pythoncomimport wmiimport threadingimport timeclass Info (threading.Thread):def __init__ (self):threading.Thread.__init__ (self)def run (self):print 'In Another Thread...'pythoncom.CoInitialize ()try:c = wmi.WMI ()for i in range (5):for process in c.Win32_Process ():print process.Proc 阅读全文
posted @ 2012-10-09 20:22 gjung 阅读(734) 评论(0) 推荐(0)