Eswar Koneti's Blog

All about Configmgr and its connected objects…….

  • About Author
      View eswar koneti's LinkedIn profile
  • Enter your email address to subscribe to this blog and receive notifications of new posts by email.

    Join 106 other subscribers

  • Awards


  • FaceBook Updates

  • Catagories

  • Meta

  • Copyright!

    All the blog posts in this website are owned by Eswar Koneti and may not be reused in any mode without prior approval of Eswar Koneti. You may quote one paragraph from the blog posts if you link to the original blog post.
    Happy Reading!

sccm report packages status on Distribution Point

Posted by Eswar Koneti on June 2nd, 2012

Previous report list the packages which are successfully distributed to Distribution Points http://eskonr.com/2012/06/sccm-report-total-number-of-packages-targeted-to-dp/

This post gives you more information about package status for selected distribution Point.

Report for packages which are Pending:

select s.sitecode,s.packageid,p.name,s.sourceversion as "dpversion",p.storedpkgversion as latesteversion
from v_PackageStatusDistPointsSumm s
join smspackages p on s.packageid = p.pkgid
where s.installstatus !=’Package Installation complete’
and s.servernalpath like ‘%DPserverName%’
order by s.packageid

Report for packages which are Installed :

select s.sitecode,s.packageid,p.name,s.sourceversion as "dpversion",p.storedpkgversion as latestversion
from v_PackageStatusDistPointsSumm s
join smspackages p on s.packageid = p.pkgid
where s.installstatus =’Package Installation complete’
and s.servernalpath like ‘%DPSERVERNAME%’
order by s.packageid

Report for packages which are not Targeted but not installed :

Select Sitecode,PackageID,Name,Targeted,INSTALLED from v_PackageStatusDetailSumm where SiteCode =’Sitecode’ and Targeted-Installed >0

Report for total number of packages targetted to Distribution Point :

 

SELECT v_Package.PackageID, Name,    v_DistributionPoint.LastRefreshTime    
FROM v_Package INNER JOIN v_DistributionPoint ON v_Package.PackageID = v_DistributionPoint.PackageID
WHERE v_DistributionPoint.ServerNALPath LIKE ‘%DPServerName%’

4 Responses to “sccm report packages status on Distribution Point”

  1. Josh Says:

    How can I post this inside of standard SCCM webreporting done through the console?

  2. Eswar Koneti Says:

    are you referring to SSRS reports ?
    you can create new report from SSRS and past the query into it.

  3. Dhivakar Says:

    Hi,

    Could you please help in getting SCCM report Count packages with no advertisements. in this we need package Details like Package Name with ID and Versions of it.

    Please help me in getting this report

    Thanks in advance,

    Regards
    Dhivakar

  4. Eswar Koneti Says:

    http://eskonr.com/2012/08/sccm-report-count-packages-with-no-advertisements/

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>