Mar 29 2012
Queries to pull SCCM Package status information on Distribution point
Queries to pull SCCM Package status information on Distribution point 1) Below query will provide the install status (failed,pending,complete) of package and respective count select COUNT(*),InstallStatus from v_PackageStatusDistPointsSumm where PackageID like ‘<PackageID>‘ group by InstallStatus 2) Below query will provide the list of DP’s where package status is completed select * from v_PackageStatusDistPointsSumm where [...]




