Audit Your Windows Event Logs For Errors
The Windows event log contains an extreme amount of data about the computer ranging from login data to errors generated on the computer. By default, Lansweeper will scan all the error events generated by the Windows computer. Additionally, you can enable scanning other event log information. These errors can be used to both discover and resolve issues on your computers, preventing downtime.
The audit below provides an overview of all error events scanned in your IT environment so you can easily find, identify and resolve potential issues.
Windows Error Events Generated in Last 7 Days Query
Select Top 1000000 tblAssets.AssetID, tblAssets.AssetName, tblAssets.Domain, tblAssets.Username, tblAssets.Userdomain, Coalesce(tsysOS.Image, tsysAssetTypes.AssetTypeIcon10) As icon, tblAssets.IPAddress, tsysIPLocations.IPLocation, tblAssetCustom.Manufacturer, tblAssetCustom.Model, tsysOS.OSname As OS, tblAssets.SP, tblAssets.Lastseen, tblAssets.Lasttried, tblNtlog.Eventcode, Case tblNtlog.Eventtype When 1 Then 'Error' When 2 Then 'Warning' When 3 Then 'Information' When 4 Then 'Security Audit Success' When 5 Then 'Security Audit Failure' End As EventType, tblNtlog.TimeGenerated, tblNtlogSource.Sourcename, tblNtlogFile.Logfile, tblNtlogUser.Loguser, tblNtlogMessage.Message From tblAssets Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype Inner Join tsysIPLocations On tsysIPLocations.LocationID = tblAssets.LocationID Inner Join tblState On tblState.State = tblAssetCustom.State Inner Join tblNtlog On tblNtlog.AssetID = tblAssets.AssetID Inner Join tblNtlogMessage On tblNtlogMessage.MessageID = tblNtlog.MessageID Inner Join tblNtlogSource On tblNtlogSource.SourcenameID = tblNtlog.SourcenameID Inner Join tblNtlogUser On tblNtlogUser.LoguserID = tblNtlog.LoguserID Inner Join tblNtlogFile On tblNtlogFile.LogfileID = tblNtlog.LogfileID Left Join tsysOS On tsysOS.OScode = tblAssets.OScode Where Case tblNtlog.Eventtype When 1 Then 'Error' When 2 Then 'Warning' When 3 Then 'Information' When 4 Then 'Security Audit Success' When 5 Then 'Security Audit Failure' End = 'Error' And tblNtlog.TimeGenerated > GetDate() - 7 And tblState.Statename = 'Active' Order By tblNtlog.TimeGenerated Desc, tblAssets.Domain, tblAssets.AssetName