Tracking the Programs Executed on a System

Enable the Audit process tracking audit policy and monitor for event ID 592 to discover which programs have run on a system.

ITPro Today

September 19, 2005

1 Min Read
ITPro Today logo in a gray background | ITPro Today


How can I track the programs that a user executes on his or her workstation or the programs being executed on a server?

Enable the Audit process tracking audit policy for the desired computers. You'll find this setting in any Group Policy Object (GPO) under Computer ConfigurationWindows SettingsSecurity SettingsLocal PoliciesAudit Policy in the Group Policy Management Console (GPMC). Then start monitoring for event ID 592 (A new process has been created), which Windows logs whenever a new executable is started. This event reports the full path of the program and the user who started the program, as Figure 1 shows. You can figure out when the program ended by looking in the log for an occurrence of event ID 593 (A process has exited) with the same Process ID value. For more information about these events, see my Windows Security Log Encyclopedia at http://www.ultimatewindowssecurity.com/encyclopedia.html.

Listing 1 shows a Log Parser script that reports each program executed for a specified system. To run the query against a remote computer, change the from clause to from \computersecurity, in which computer is the name of the computer you wish to query. You can specify more than one computer in the same query by simply separating the computer names with a comma. For example, from \computer1security, \computer2security would query both computer1 and computer2. To download Microsoft's Log Parser tool, go to http://www.microsoft.com/downloads/details.aspx?familyid=890cd06b-abf8-4c25-91b2-f8d975cf8c07&displaylang=en.

Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.

You May Also Like