→ 🚀What's New? Join Us for the Fall Product Launch! Register Now !
‎08-27-2015 09:36 AM
Detailed Tracking
Detailed Tracking security policy settings and audit events can be used to monitor the activities of individual applications and users on that computer, and to understand how a computer is being used. This category includes the following subcategories:
Audit Process Creation
Audit Process Termination
Solved! Go to Solution.
‎08-27-2015 01:22 PM
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.IPAddress,
tblAssets.Lastseen,
tNTlogProject.Eventcode As [Project Event],
tNTlogProject.Message As [Project Message],
tNTlogProject.TimeGenerated [Project Time generated]
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Left Join (Select tblNtlog.AssetID,
tblNtlog.Eventcode,
tblNtlogMessage.Message,
tblNtlog.TimeGenerated
From tblNtlog
Inner Join tblNtlogMessage On tblNtlog.MessageID = tblNtlogMessage.MessageID
Where tblNtlog.Eventcode In (4689, 4688) And tblNtlogMessage.Message
Like '%winproj.exe %' And tblNtlog.TimeGenerated > GetDate() -
7) tNTlogProject On tNTlogProject.AssetID = tblAssets.AssetID
Where tblAssetCustom.State = 1
Order By [Project Time generated] Desc
‎08-27-2015 01:43 PM
<QueryList>
<Query Id="0" Path="Security">
<Select Path="Security">*[System[( (EventID >= 4688 and EventID <= 4689) )]]
and
*[EventData[Data and (Data='C:\Program Files (x86)\Microsoft Office\Office14\winproj.exe' )]]
or
*[EventData[Data and (Data='C:\Program Files\Microsoft Office\Office14\winproj.exe' )]]
or
*[EventData[Data and (Data='C:\Program Files (x86)\Microsoft Office\Office14\visio.exe' )]]
or
*[EventData[Data and (Data='C:\Program Files\Microsoft Office\Office14\visio.exe' )]]
</Select>
</Query>
</QueryList>
‎08-27-2015 01:22 PM
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.IPAddress,
tblAssets.Lastseen,
tNTlogProject.Eventcode As [Project Event],
tNTlogProject.Message As [Project Message],
tNTlogProject.TimeGenerated [Project Time generated]
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Left Join (Select tblNtlog.AssetID,
tblNtlog.Eventcode,
tblNtlogMessage.Message,
tblNtlog.TimeGenerated
From tblNtlog
Inner Join tblNtlogMessage On tblNtlog.MessageID = tblNtlogMessage.MessageID
Where tblNtlog.Eventcode In (4689, 4688) And tblNtlogMessage.Message
Like '%winproj.exe %' And tblNtlog.TimeGenerated > GetDate() -
7) tNTlogProject On tNTlogProject.AssetID = tblAssets.AssetID
Where tblAssetCustom.State = 1
Order By [Project Time generated] Desc
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now