
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-12-2013 06:07 PM
We have an issue with some XP machines and the firewall.
Is there a report that can show:
Only if it is an XP machine and has the following error: [Type] Ping Failed
That will tell me which machines need our script run to "fix" them.
Is there a report that can show:
Only if it is an XP machine and has the following error: [Type] Ping Failed
That will tell me which machines need our script run to "fix" them.
Solved! Go to Solution.
Labels:
- Labels:
-
Report Center
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-13-2013 02:34 PM
The built-in error reports only list machines that have never been successfully scanned. You can run the report below to list Windows machines that generated an error in the last week.
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tsysOS.OSname,
tblErrors.CFGname,
tsysasseterrortypes.ErrorMsg As Type,
tblErrors.ErrorText As Message,
tblErrors.Lastchanged
From tblAssets
Inner Join tblErrors On tblAssets.AssetID = tblErrors.AssetID
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysasseterrortypes On tblErrors.ErrorType =
tsysasseterrortypes.Errortype
Left Join tsysOS On tsysOS.OScode = tblAssets.OScode
Where tblErrors.Lastchanged > GetDate() - 7 And tblAssetCustom.State = 1 And
tblAssets.Assettype = -1
Order By tblErrors.Lastchanged Desc,
tblAssets.AssetName
4 REPLIES 4

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-13-2013 02:41 PM
Thanks. That'll work great for what I'm trying to do.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-13-2013 02:34 PM
The built-in error reports only list machines that have never been successfully scanned. You can run the report below to list Windows machines that generated an error in the last week.
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tsysOS.OSname,
tblErrors.CFGname,
tsysasseterrortypes.ErrorMsg As Type,
tblErrors.ErrorText As Message,
tblErrors.Lastchanged
From tblAssets
Inner Join tblErrors On tblAssets.AssetID = tblErrors.AssetID
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysasseterrortypes On tblErrors.ErrorType =
tsysasseterrortypes.Errortype
Left Join tsysOS On tsysOS.OScode = tblAssets.OScode
Where tblErrors.Lastchanged > GetDate() - 7 And tblAssetCustom.State = 1 And
tblAssets.Assettype = -1
Order By tblErrors.Lastchanged Desc,
tblAssets.AssetName

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-13-2013 09:54 AM
If a machine is never successfully scanned, Lansweeper cannot know what the OS is either.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-13-2013 01:45 PM
Lansweeper wrote:
If a machine is never successfully scanned, Lansweeper cannot know what the OS is either.
They have been with manual scan.
Eitherway, is there a general Errors report? Regardless of OS?
