Re: missing process in wim32_process
- From: "Jon Liu [MSFT]" <jonliu@xxxxxxxxxxxxxxxxxxxx>
- Date: Thu, 25 Aug 2005 17:23:27 -0700
You mention you want to monitor "services". You can also use the
Win32_Services Class to monitors services running on your machine.
--
This posting is provided "AS IS" with no warranties, and confers no rights.
Use of included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm
"Marty List" <usenet@xxxxxxxxxxxx> wrote in message
news:OYq4Bl8iFHA.1232@xxxxxxxxxxxxxxxxxxxxxxx
>
> Try this sample script: (launch it from the command prompt using
> CSCRIPT.EXE)
>
>
> Option Explicit
> On Error GoTo 0
>
> Dim objWMI, objItem, colItems
>
> Set objWMI = GetObject("winmgmts:")
> Set colItems = objWMI.ExecQuery("SELECT * FROM Win32_Process")
> For Each objItem In colItems
> WScript.Echo objItem.Name
> Next
>
> 'http://msdn.microsoft.com/library/en-us/wmisdk/wmi/win32_process.asp
>
>
>
> "Oren Zippori" <orenzp@xxxxxxxxxxx> wrote in message
> news:uHnw5P6iFHA.1464@xxxxxxxxxxxxxxxxxxxxxxx
>> Good day every one,
>> I want to start monitoring some of my compeny custom made application. i
>> want to monitor there services using win32_process but the thing is that
>> i
>> can't find any of thouse process listed in win32_process. the process
> appear
>> in windows task manager but i can;t see the using wbemtest utiliy. again
>> thouse process where created by are compeny programers.
>>
>> Thanks in advance
>> Oren Zippori
>>
>>
>
>
.
- Prev by Date: Re: Adapter configuration settings
- Next by Date: Re: Capturing Symntec's Antivirus event
- Previous by thread: newbie problem - file revision & size
- Next by thread: Re: Capturing Symntec's Antivirus event
- Index(es):