Sorry, I had to use that subject line because there is an unanswered post from someone else with the subject line I wanted to use and this forum software is set to prevent duplicate posts. Silly really.
To the point. I have been working on a report to find systems with more than one version of Java. It seemed straight forward but isn't working. The report returns 0 results. However, I know from our SCCM environment that we have several hundred systems that qualify. Mgmt has a penchant for LS reporting and doesn't like that they can't filter on the fly in SCCM as they can with LS.
Below is what I have so far...
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Lastseen,
tblAssets.Lasttried,
tblSoftwareUni.softwareName,
tblSoftware.softwareVersion,
tsysIPLocations.IPLocation
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblSoftware On tblAssets.AssetID = tblSoftware.AssetID
Inner Join tblSoftwareUni On tblSoftwareUni.SoftID = tblSoftware.softID
Inner Join tsysIPLocations On tsysIPLocations.LocationID =
tblAssets.LocationID
Where tblSoftwareUni.softwareName Like '%java 7%' And
tblSoftwareUni.softwareName Like '%java 8%' And tblAssetCustom.State = 1
I searched finished reports for "Multiple versions of software", "Multiple versions" and finally just "version" and "versions" and plowed through several pages of results for unrelated items. If this has already been answered, my apologies for taking up your time.
My thanks in advance.
GMFDE