Re: How to get Windows system information?

2006-01-17 Thread dpickles
nevermind, found it thanks all! -- http://mail.python.org/mailman/listinfo/python-list

Re: How to get Windows system information?

2006-01-15 Thread dpickles
For the memory, which of these fields tells you the total amount of RAM? Thanks! -- http://mail.python.org/mailman/listinfo/python-list

Re: How to get Windows system information?

2006-01-15 Thread dpickles
Thank you all! These tips answer my question. I am glad I discovered this group. -- http://mail.python.org/mailman/listinfo/python-list

Re: How to get Windows system information?

2006-01-15 Thread Tim Golden
[posting through Google; not sure how it will format] re info on WMI website: please note that the examples I give no the WMI pages are *nowhere near* exhausting what WMI can do. They don't even scratch the surface. And I all too rarely add to them. If you look around the net, you'll find absolut

Re: How to get Windows system information?

2006-01-14 Thread Martin P. Hellwig
[EMAIL PROTECTED] wrote: > thank you! > > from what I can see from the second website you listed, there is a way > to get harddisk space information, but is there any way to get CPU load > and RAM usage? > Have a look at the snippet: #>>> import wmi #>>> t = wmi.WMI() #>>> for i in t.Win32_Perf

Re: How to get Windows system information?

2006-01-14 Thread dpickles
thank you! from what I can see from the second website you listed, there is a way to get harddisk space information, but is there any way to get CPU load and RAM usage? -- http://mail.python.org/mailman/listinfo/python-list

Re: How to get Windows system information?

2006-01-13 Thread Paul Watson
Martin P. Hellwig wrote: > [EMAIL PROTECTED] wrote: > >> Does anybody know how to get the: >> >> Free hard disk space >> Amount of CPU load >> and Amount of RAM used >> >> on windows? I am making an artificial intelligence program that has >> "moods" based on how much stress the sys

How to get Windows system information?

2006-01-13 Thread dpickles
Does anybody know how to get the: Free hard disk space Amount of CPU load and Amount of RAM used on windows? I am making an artificial intelligence program that has "moods" based on how much stress the system is under, based on these parameters. I think it could possibly be done vi

Re: How to get Windows system information?

2006-01-13 Thread Martin P. Hellwig
[EMAIL PROTECTED] wrote: > Does anybody know how to get the: > > Free hard disk space > Amount of CPU load > and Amount of RAM used > > on windows? I am making an artificial intelligence program that has > "moods" based on how much stress the system is under, based on these > param