cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Srikanth08
Engaged Sweeper II
Hi,

Is there any report available for monitoring the windows activation errors in the systems?
Regards, Srikanth08
1 REPLY 1
Hemoco
Lansweeper Alumni
We do not know of any specific event codes, but you can likely report on this using tblntlogevent. An example report can be seen below. Replace "YourCode" with the event code you would like to report on.

Select tblComputers.Computername, tblComputers.Domain, tblComputers.Computer,
tblntlogevent.Eventcode, tblntlogevent.Eventtype, tblntlogevent.Logfile,
tblntlogevent.Message, tblntlogevent.Sourcename, tblntlogevent.TimeGenerated,
tblntlogevent.[User]
From tblComputers Inner Join
tblntlogevent On tblComputers.Computername = tblntlogevent.Computername
Where tblntlogevent.Eventcode = YourCode
Order By tblComputers.ComputerUnique, tblntlogevent.TimeGenerated Desc

To use the specified report, do the following:
• Open the Lansweeper configuration console and select Reports & Alerts\Report Builder. Hit the “New” button.
• Copy the SQL code provided and paste it at the bottom of the newly created report, replacing the default SQL code.
• Click somewhere near tblComputers so the new code applies.
• Give the report a “View name” and a “Report name” and hit the “Save” button.
• Double-click on the report in the report list to see its results and export options.