Hello
i found an SQL query that i adapted in order to get all the SCCM applications located in "Software library/Applications" and it works nicely but i need to retrieve the "ObjectPath" column because i have a few subfolders i need to filter.
here is the query:
SELECT v_Applications.DisplayName,
v_applications.Manufacturer,
v_applications.SoftwareVersion
FROM v_Applications
LEFT JOIN v_Applications as applications on applications.DisplayName = v_Applications.DisplayName
Order by v_Applications.DisplayName
i found out that this may be achievable by using the "vSMS_Folders" table but after a lot of researchs, i couldn't find what i need.
does anyone knows how to achieve this ? or am i completely in the wrong path and there's another easiest way to do it ?
thank you for your help
i found an SQL query that i adapted in order to get all the SCCM applications located in "Software library/Applications" and it works nicely but i need to retrieve the "ObjectPath" column because i have a few subfolders i need to filter.
here is the query:
SELECT v_Applications.DisplayName,
v_applications.Manufacturer,
v_applications.SoftwareVersion
FROM v_Applications
LEFT JOIN v_Applications as applications on applications.DisplayName = v_Applications.DisplayName
Order by v_Applications.DisplayName
i found out that this may be achievable by using the "vSMS_Folders" table but after a lot of researchs, i couldn't find what i need.
does anyone knows how to achieve this ? or am i completely in the wrong path and there's another easiest way to do it ?
thank you for your help