
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2012 02:29 PM
Hi,
Is there any report available for monitoring the windows activation errors in the systems?
Is there any report available for monitoring the windows activation errors in the systems?
Regards,
Srikanth08
Labels:
- Labels:
-
General Discussion
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2012 04:11 PM
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.
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.
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.
