Hi,
i need a Report with the Information how many Office 2000 - 2003 (all Versions) Installations are installed on the Clients.
The Report must contain the Location of the PC and the Version.
But it will not work.
😞Can you help me?
Select Top 1000000 tblSoftwareUni.softwareName As Software,
tblSoftware.softwareVersion As Version,
Count(tblSoftware.SoftwareID) As Total,
tsysIPLocations.IPLocation,
tblAssets.IPAddress,
tsysIPLocations.StartIP,
tsysIPLocations.EndIP
From tblSoftware
Inner Join tblAssets On tblSoftware.AssetID = tblAssets.AssetID
Inner Join tblSoftwareUni On tblSoftware.softID = tblSoftwareUni.SoftID
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysIPLocations On tsysIPLocations.StartIP = tblAssets.IPAddress
And tsysIPLocations.EndIP = tblAssets.IPAddress
Where tblSoftwareUni.SoftwarePublisher Like '%microsoft%' And
tblAssetCustom.State = 1
Group By tblSoftwareUni.softwareName,
tblSoftware.softwareVersion
Having tblSoftwareUni.softwareName Like '%Office%2003%'
Order By Total Desc,
Software