Is there a way to find out what specific software resources are missing without having to physically go to every directory for each resource?
To create the report and an email automation policy:
In the ITMS console, navigate to Reports > All Reports, and then to a folder where you want the below report to reside. Right-click the folder and select New > Report > SQL Report. Give the report a desired name at the top, and replace all text in the Parametrized Query tab with the below SQL code:SELECT vc.[Name] AS [Package Server], count(pk.[Name]) AS [Package Count], ps.Status AS [Status]
FROM SWDPackageServer ps
JOIN vComputer vc ON ps.PkgSvrId = vc.Guid
JOIN vRM_Package_Item pk ON pk.Guid = ps.PackageId
WHERE pk.ProductUninstalled = 0 and ps.Status <> 'Ready'
GROUP BY VC.NAME, ps.Status
Order by [Package Server]
and click Save Changes.
ITMS Technical Documentation on Managing Automation Policies: