
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-08-2013 07:36 PM
I have been trying to create a report for the last 3 days that will show me all of my current XP machines that are missing the KB943729 update. This is crucial to only show XP machines as it is the update for Client side extensions. If possible, I would like to have this report sort it by IP location and then Computer Name. Will someone please help me!
Thank you!
Thank you!
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
‎05-08-2013 11:17 PM
Please use the report below for this.
SELECT tsysOS.Image AS icon, tblAssets.AssetID, tblAssets.AssetName, tblAssets.Domain, tblAssets.IPAddress, tsysIPLocations.IPLocation, tsysOS.OSname, tblAssets.SP,
tblAssets.Firstseen, tblAssets.Lastseen
FROM tblAssets INNER JOIN
tblAssetCustom ON tblAssets.AssetID = tblAssetCustom.AssetID INNER JOIN
tsysOS ON tblAssets.OScode = tsysOS.OScode LEFT OUTER JOIN
tsysIPLocations ON tblAssets.IPNumeric >= tsysIPLocations.StartIP AND tblAssets.IPNumeric <= tsysIPLocations.EndIP
WHERE (tblAssetCustom.State = 1) AND (NOT (tblAssets.AssetID IN
(SELECT tblQuickFixEngineering.AssetID
FROM tblQuickFixEngineering INNER JOIN
tblQuickFixEngineeringUni ON tblQuickFixEngineeringUni.QFEID = tblQuickFixEngineering.QFEID
WHERE (tblQuickFixEngineeringUni.HotFixID = 'KB943729')))) AND (tsysOS.OSname = 'win xp')
ORDER BY tsysIPLocations.IPLocation, tblAssets.AssetName
4 REPLIES 4

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-14-2013 07:10 AM
Hi,
if it other OS means, like i want to check in all OS means how to update this query?
if it other OS means, like i want to check in all OS means how to update this query?
Regards,
Srikanth08

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-14-2013 06:28 PM
Srikanth08 wrote:
if it other OS means, like i want to check in all OS means how to update this query?
A sample report was posted here: http://lansweeper.com/forum/yaf_postst7317_Report-for-Missing-Hotfix.aspx
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Lastseen,
tblAssets.Lasttried
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where tblAssets.AssetID Not In (Select tblQuickFixEngineering.AssetID
From tblQuickFixEngineering Inner Join tblQuickFixEngineeringUni
On tblQuickFixEngineeringUni.QFEID = tblQuickFixEngineering.QFEID
Where tblQuickFixEngineeringUni.HotFixID = 'YourFix') And
tsysAssetTypes.AssetTypename = 'windows' And tblAssetCustom.State = 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-09-2013 12:59 AM
You guys rock! This report worked great. I went to a few of the machines to verify and it was acurate and easy! I am new to Lansweeper but this has helped me modify a couple of other custom reports that I have already created. Thank you again!

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-08-2013 11:17 PM
Please use the report below for this.
SELECT tsysOS.Image AS icon, tblAssets.AssetID, tblAssets.AssetName, tblAssets.Domain, tblAssets.IPAddress, tsysIPLocations.IPLocation, tsysOS.OSname, tblAssets.SP,
tblAssets.Firstseen, tblAssets.Lastseen
FROM tblAssets INNER JOIN
tblAssetCustom ON tblAssets.AssetID = tblAssetCustom.AssetID INNER JOIN
tsysOS ON tblAssets.OScode = tsysOS.OScode LEFT OUTER JOIN
tsysIPLocations ON tblAssets.IPNumeric >= tsysIPLocations.StartIP AND tblAssets.IPNumeric <= tsysIPLocations.EndIP
WHERE (tblAssetCustom.State = 1) AND (NOT (tblAssets.AssetID IN
(SELECT tblQuickFixEngineering.AssetID
FROM tblQuickFixEngineering INNER JOIN
tblQuickFixEngineeringUni ON tblQuickFixEngineeringUni.QFEID = tblQuickFixEngineering.QFEID
WHERE (tblQuickFixEngineeringUni.HotFixID = 'KB943729')))) AND (tsysOS.OSname = 'win xp')
ORDER BY tsysIPLocations.IPLocation, tblAssets.AssetName
