Re: error occurs when using wmi module in child thread
thanks to solve my big problem :-) I will try it later. -- http://mail.python.org/mailman/listinfo/python-list
error occurs when using wmi module in child thread
--sample code begin- import threading import wmi def run(*args): c = wmi.WMI () memory=c.Win32_LogicalMemoryConfiguration()[0] info='Total Virtual Memory: '\ +str(int(memory.TotalVirtualMemory)/1024)\