Specifically, I want to listen to when programs are run and record information such as: timestamp, executable, windows name and user.
|
feedback
|
|
Alternatively, use the WMI interface to find out what's running and take appropriate action. In the VBScript code below the WMI subsystem is being queried with
| |||
|
feedback
|
|
The most obscene way of doing this is the Google-desktop way | |||
|
feedback
|
|
I would use the PSAPI function EnumProcesses() to periodically get a list of running processes. | |||
|
feedback
|
|
You could set up a WMI permanent event subscription to monitor process creation and log the details. I have some samples here - one of the samples monitors notepad.exe creation and logs the events in a txt file. Permanent event subscription monitors events 'at all times', but if you want to monitor events 'for the duration of your application', you can use WMI COM API with C++ - the WQL event query is the same in both cases. The documentation is here. | |||
|
feedback
|