Discussion:
Application Monitoring on remote computer
(too old to reply)
RKS
2007-08-26 15:24:53 UTC
Permalink
Is it possible to know if a Windows Application crashed on a remote
computer using WMI? If so please provide some examples of how to find
out or related links.
Thanks
TroubleMan
2007-08-31 15:50:02 UTC
Permalink
If you are certain the application will crash you can use a temporary event
consumer to monitor the application. The link below includes temporary and
permanent event examples

http://msdn2.microsoft.com/en-us/library/Aa393013.aspx

Basically you would connect to the remote machine and execute a query
similiar to the following (this is a temporary consumer)

"Select * From __InstanceModificationEvent Within 5
Where TargetInstance ISA 'Win32_Process' AND TargetInstance.ProcessID =
'Process ID Number Here'"

Loading...