gel wrote:

> Below is how it is down with vbscript.  What is the best way to convert
> this to python?
>
> strComputer = "."
> Set objWMIService = GetObject("winmgmts:" _
>     & "{impersonationLevel=impersonate}!\\" & strComputer &
> "\root\cimv2")
> Set colMonitoredProcesses = objWMIService. _
>     ExecNotificationQuery("select * from __instancecreationevent " _
>         & " within 1 where TargetInstance isa 'Win32_Process'")
> i = 0
>
> Do While i = 0
>     Set objLatestProcess = colMonitoredProcesses.NextEvent
>     Wscript.Echo objLatestProcess.TargetInstance.Name
> Loop

A better question might be is there a method or guide for converting
from vbs wmi to python wmi?

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

Reply via email to