I want to create a report listing Software titles with EoS dates and devices it is installed on.
I got a query to report Software titles with EoS, but don't know how to include devices it is installed on.
SELECT
sto.Publisher, sto.SoftwareTitleName,
st.SupportedUntil,
st.ExtendedSupportUntil
FROM SoftwareTitleINfo sto
INNER JOIn SoftwareTitle st
ON St.SoftwareTitleID = sto.SoftwareTitleID
Where
sto.HasInstalls > 0
AND
(SupportedUntil <= '01/08/2050' Or
ExtendedSupportUntil <= '01/08/2050')
Aug 05, 2020 01:37 AM
Hello @GopalRaghvani,
You could use a JOIN to the InstalledSoftware table (contains SoftwareTitleIDs and ComplianceComputerIDs), then JOIN that to ComplianceComputer.
HTH,
Joseph
Aug 05, 2020 01:49 AM
Hello @GopalRaghvani,
You could use a JOIN to the InstalledSoftware table (contains SoftwareTitleIDs and ComplianceComputerIDs), then JOIN that to ComplianceComputer.
HTH,
Joseph
Aug 05, 2020 01:49 AM