Status Report for Software Update Deployement

Hi,
I am looking for SCCM2012 query for patch status from specific deployment and specific collection. I need the following details in my patch
report with against each machine name
"Total Number of updates required"
"Total Number of updates installed successfully"
"Total Number of Updates Failed"
"Total Number of Updates installing"
"Total Number of updates downloading"
etc.
Thanks

That's a fairly challenging report request.  You'll have to pull together information from many different tables, and from what I can tell, you're also looking for some real-time information with the installing/downloading portions as well.
This report has some of what you're requesting:
http://anotherblabla.wordpress.com/2012/03/06/sccm-usefull-software-update-reports/
Some good stuff here too:
http://pleasepressanykey.blogspot.com/2010/08/sccm-patchmgmt-custom-reports.html
You should also consider taking a look at some of the out-of-the box reports in 2012 for Software updates.  I don't believe any have
exactly what you're looking but I think most if not all of the components are there and you could extract those and combine them into a new report. 
If you're new to reporting, this is a decent guide that I followed and it's decent and will help you get some of the basics.
http://sccmgeekdiary.wordpress.com/2012/10/29/sccm-2012-reporting-for-dummies-creating-your-own-ssrs-reports/
Hope this helps.

Similar Messages

  • SCCM Report for Software Updates that show the required update and its size

    Hello-
    I created multiple windows update deployments, but was looking to view a report that shows me the update name (like the KB and MS) along with the size of the update.
    Does anyone know if there's a pre-made report?  If not, does anyone know of a good query to get this info?
    Thanks!
    Andrew

    Yes, I know this is an old post, I’m just trying to clean them up.
    There is no pre-canned report for this. Yes a report can be written to collect this inform but keep in mind that a SU mind have several versions aka 1 for Winxp, 1 for Vista, 1 for Win2k3, 1 for Win2k3 Sp1, etc. if you are trying aggregate
    the data it will take a bit of fancy SQL/SSRS work to get this done. BTW Getting the size of the KB also take a bit of work.
    http://www.enhansoft.com/

  • Query for Software Updates Reports Install Date for only Some of the Installed Updates

    We use the following query to retrieve a list of software updates for a specific collection and software update group.  There are many cases where the installation status of a software update is 'installed' but there is no corresponding 'install
    date'.  Can anyone tell me why?
    declare   @AuthListLocalID as int
    declare @CollID as varchar(8)
    Select @CollID=CollectionID
    from v_Collection
    WHERE CollectionID='ZSV0000A'
    select @AuthListLocalID=CI_ID from   v_AuthListInfo
    where    CI_UniqueID='ScopeId_EAD5EB80-CC39-4EA2-B08F-A45BB84F1D76/AuthList_4DEAD110-5740-495E-8BD8-467A55C50A0C'
    select
    rs.Name0 as ServerName,
    catinfo.CategoryInstanceName as Vendor,
    catinfo2.CategoryInstanceName as   UpdateClassification,
    ui.BulletinID as BulletinID,
    ui.ArticleID as ArticleID,
    Case ui.Severity WHEN 10 THEN 'Critical' WHEN 8 THEN 'Important' ELSE LTRIM(ui.Severity) END as Rating,
    ui.Title as Title,            
    Targeted=(case when ctm.ResourceID is not   null then '*' else '' end),
    Installed=(case when css.Status=3 then   '*' else '' end),
    IsRequired=(case when css.Status=2 then   '*' else '' end),
    Deadline=cdl.Deadline,            
    CAST(CASE   IsNull(AddRem.InstallDate0,CAST('1/1/1900' as smalldatetime)) WHEN   CAST('1/1/1900' as smalldatetime) THEN AddRem64.InstallDate0 ELSE   AddRem.InstallDate0 END as Date) as 'Install Date',
    ui.InfoURL as InformationURL
    from v_UpdateComplianceStatus css
    inner join v_UpdateInfo ui on   ui.CI_ID=css.CI_ID
    inner join v_CIRelation cir 
    on ui.CI_ID=css.CI_ID and cir.ToCIID =   ui.CI_ID -- add this
    inner join v_CICategories_All catall on   catall.CI_ID=ui.CI_ID 
    inner join v_CategoryInfo catinfo on   catall.CategoryInstance_UniqueID = catinfo.CategoryInstance_UniqueID and   catinfo.CategoryTypeName='Company' 
    inner join v_CICategories_All catall2 on   catall2.CI_ID=ui.CI_ID 
    inner join v_CategoryInfo catinfo2 on   catall2.CategoryInstance_UniqueID = catinfo2.CategoryInstance_UniqueID
    and   catinfo2.CategoryTypeName='UpdateClassification'
    left outer join v_CITargetedMachines ctm   on ctm.CI_ID=css.CI_ID
    and ctm.ResourceID = css.ResourceID
    left outer join v_GS_ADD_REMOVE_PROGRAMS   AddRem on css.ResourceID = AddRem.ResourceID and ui.Title =   AddRem.DisplayName0
    left outer join   v_GS_ADD_REMOVE_PROGRAMS_64 AddRem64 on css.ResourceID = AddRem64.ResourceID   and ui.Title = AddRem64.DisplayName0
    left outer join (select atc.CI_ID
    ,CreationTime=min(a.CreationTime)
    ,ExpirationTime=min(a.ExpirationTime)
    ,StartTime=min(a.StartTime)
    ,EnforcementDeadLine=min(a.EnforcementDeadLine)
    ,LastModificationTime=min(a.LastModificationTime)
    ,Deadline=min(a.EnforcementDeadline)
    from v_CIAssignment a
    inner join v_CIAssignmentToCI atc on   atc.AssignmentID=a.AssignmentID
    group by atc.CI_ID) cdl  
    on cdl.CI_ID=css.CI_ID
    left outer join v_R_System rs ON   css.ResourceID=rs.ResourceID
    where    css.ResourceID in (
    Select vc.ResourceID
    FROM v_FullCollectionMembership vc
    WHERE vc.CollectionID=@CollID)
    and cir.FromCIID=@AuthListLocalID
    and cir.RelationType=1  
    order by
    catinfo.CategoryInstanceName
    , catinfo2.CategoryInstanceName
    , ui.ArticleID

    Hi Mate,
    Its really difficult to do get the installed date of the patches as there is no table available in SCCM  DB to pull this info i had a requirement in the past but i was unable to do had done it via work around.
    This can be done after editing of sms_def.mof file or else using the power-shell script in windows server 2008 where the powershell is a feature by default.
    H/W inventory: 
    For the 2000 servers this has to be installed but if we enable this its mentioned it may utilize upto 100 % of the Memory during the h/w inventory you can check that in your SMS_DEF.MOF  -
    QuickFixEngineering you can see the warning.uickFixEngineering
    http://support.microsoft.com/kb/279225/en-us
    Powershell script:
    http://msmvps.com/blogs/richardsiddaway/archive/2011/10/23/1760058.aspx
    the warning for the quick fix engineering is not there on 2012 but there on 2007 hope the info help you to achieve your output.
    Kamala kannan.c| Please remember to click “Mark as Answer” or Vote as Helpful if its helpful for you. |Disclaimer: This posting is provided with no warranties and confers no rights

  • Add column for System OU name to report under Software Updates - C deployment states

    I would like to add a column with the System OU name for the States 1-Enforcement state for a deployment report under Software Updates -C Deployments states.  I do not know sql.  Can someone please let me know that code I need to add to the
    report so I can get this information?  Any help would be greatly appreciated.  SCCM 2012 R2 environment.
    MLStev

    Use the SQL Report Builder to do that.

  • "Silent" (?) Update to 10.4.8 available but not reported by Software Update

    Why is this update NOT reported by Software Update?
    From the Apple downloads site:
    Digital Camera RAW Support Update (PPC) [Mac-Intel version also available]
    About this update
    Mac OS X Tiger provides support for a variety of popular digital camera and image file formats. Applications such as Aperture, iPhoto and Preview utilize this support to work with digital camera RAW files. This update improves RAW file format compatibility for the following digital SLR cameras:
    -Canon Digital Rebel XTi / 400D / Kiss X Digital
    -Nikon D80
    -Pentax *ist DS
    Other issues addressed:
    -Handling of large Canon RAW files (.CRW)
    -DNG compatibility on Intel-based Macs
    -Lines sometimes appearing in images exported from Aperture
    Dual 1.25MHz MDD G4, 2GB RAM, 4 int dr.,2ext FW drives Mac OS X (10.4.8)

    You are very welcome Ramon, thanks for posting back. Mext time I'll send it by airmail!

  • My mac mini is running slow.  Bought it in 2009.  Activity monitor shows nothing running that should not be.  Someone suggested it might be my operating system?  Check for software updates, and I am current.  Suggestions?

    My mac mini is running slow.  Bought it in 2009.  Activity monitor shows nothing running that should not be.  Someone suggested it might be my operating system?  Check for software updates, and I am current.  Suggestions?

    Open Activity Monitor, Show:>All Processes, sort on CPU%, see if anything using too much CPU% when this happens, click on Memory tab, do you have many Pageouts?
    Open Console in Utilities & see if there are any clues or repeating messages when this happens.
    Check the S.M.A.R.T. status of the drive in Disk Utilty by highlighting the Drive & looking at the bottom of the window.

  • SCCM 2012 Report for Software registered in Add/Remove programs

    Hi
    Am looking to create an SCCM 2012 Report for Software registered in Add/Remove programs on windows 7 machines but dont have enough experience with report builder to do this.
    Was hoping someone could help.

    When i use the url i still only see the following categories
    Administrative Security
    Asset Intelligence
    Client Push
    Client Status
    Compliance and Settings ManagementHave looked through them all and that one is not there
    the only software ones are the following
    Report Software 01A - Summary of installed software in a specific collectionThis report provides a summary of installed software ordered by the number of instances found from inventory.
     Open Menu
    Report Software 02A - Product families for a specific collectionThis report lists the product families and the count of software in the family for a specific collection.
     Open Menu
    Report Software 02B - Product categories for a specific product familyThis report lists the product categories in a specific product family and the count of software within the category. This report is linked to Software 02C - Software in a specific product
    family and category.
     Open Menu
    Report Software 02C - Software in a specific product family and categoryThis report lists all software that is in the specified product family and category. This report is linked to Software 06B - Software by product name.
     Open Menu
    Report Software 02D - Computers with specific software installedThis report lists all computers with specific software installed. This report is linked to Software 02E - Installed software on a specific computer .
     Open Menu
    Report Software 02E - Installed software on a specific computerThis report lists all software installed on a specific computer.
     Open Menu
    Report Software 03A - Uncategorized softwareThis report lists the software that is either categorized as unknown or has no categorization.
     Open Menu
    Report Software 04A - Software configured to automatically run on computersDisplays a list of software configured to automatically run on computers.
     Open Menu
    Report Software 04B - Computers with specific software configured to automatically runDisplays all computers with specific software configured to automatically run.
     Open Menu
    Report Software 04C - Software configured to automatically run on a specific computerDisplays installed software configured to automatically run on a specific computer.
     Open Menu
    Report Software 05A - Browser Helper ObjectsThis report displays the Browser Helper Objects installed on computers in a specific collection.
     Open Menu
    Report Software 05B - Computers with a specific Browser Helper ObjectDisplays all of the computers with a specific Browser Helper Object.
     Open Menu
    Report Software 05C - Browser Helper Objects on a specific computerDisplays all Browser Helper Objects on the specific computer.
     Open Menu
    Report Software 06A - Search for installed softwareThis report provides a summary of installed software ordered by the number of instances based on search criteria for the product name, publisher, or version.
     Open Menu
    Report Software 06B - Software by product nameThis report provides a summary of installed software ordered by the number of instances based on selected Product Name.
     Open Menu
    Report Software 07A - Recently used executable programs by the count of computersThis report displays executable programs that have been used recently with a count of computers on which they have been used. The Software Metering client must be enabled for this
    site to view this report.
     Open Menu
    Report Software 07B - Computers that recently used a specified executable programThis report displays the computers on which a specified executable program has recently been used when you enable the software metering client setting.
     Open Menu
    Report Software 07C - Recently used executable programs on a specified computerThis report displays executables that have been used recently on a specified computer when you enable the software metering client setting.
     Open Menu
    Report Software 08A - Recently used executable programs by the count of usersThis report displays executable programs that have been used recently with a count of users that have most recently used them when you enable the software metering client setting.
     Open Menu
    Report Software 08B - Users that recently used a specified executable programThis report displays the users that have most recently used a specified executable program when you enable the software metering client setting.
     Open Menu
    Report Software 08C - Recently used executable programs by a specified userThis report displays executable programs that have been used recently by a specified user when you enable the software metering client setting.
     Open Menu
    Report Software 09A - Infrequently used softwareThis report displays software titles that have not been used during a specified period of time. You can specify a value that will represent the number of days that have elapsed since the last use (e.g. if you
    enter 90 days, you will see software that was not used in the past 90 days or more). You can also leave the Days not used field empty to see all software titles that were never used.
     Open Menu
    Report Software 09B - Computers with infrequently used software installedThis report displays computers which have software installed that has not been used for a specified period of time. The specified period of time is based on the value specified in the
    'Software 09A - Infrequently used software' report.
     Open Menu
    Report Software 10A - Software titles with specific multiple custom labels definedThis report allows you to view software titles based on matching of all selected custom label criteria. Up to three custom labels can be selected to refine a software title search.
     Open Menu
    Report Software 10B - Computers with a specific custom-labeled software title installedThis report shows all computers in this collection, that have the specified custom-labeled software title installed.
     Open Menu
    Report Software 11A - Software titles with a specific custom label definedThis report allows you to view software titles based on matching of at least one of the selected custom label criteria.
     Open Menu
    Report Software 12A - Software titles without a custom labelThis report displays all software titles that do not have a custom label defined.
     Open Menu
    Report Software 14A - Search for software identification tag enabled softwareThis report provides the count of installed software with a software identification tag enabled.
     Open Menu
    Report Software 14B - Computers with specific software identification tag enabled software installedThis report lists all computers that have installed software with a specific software identification tag enabled.
     Open Menu
    Report Software 14C - Installed software identification tag enabled software on a specific computerThis report lists all installed software with a specific software identification tag enabled on a specific computer.
     Open Menu

  • ITunes stuck at preparing iPad for software update

    As shown here, iTunes is stuck at "preparing iPad for software update."
    It hsd been here for over 3 hours. The iPad itself seems normal and doesn't show a sync indication or anything else.
    The is iTunes 11.1.3 (8) on Max OS 10.9 Mavericks.
    The iPad is iOS 7.0.3.
    I cannot quit iTunes, but as noted, the iPad appears to be normal, like nothing is really happening.
    Suggestions?

    After being stuck in iTune with status bar saying preparig iPad... I went to the iPad where settings had a red 1 and I press and went into settings. It said that there was an update to the software waiting. I thought that was strange because I had started it from iTunes. so I went head and pressed to start the update from the iPad and it did it and completed the update in about 2 mintues. I know if I had unplugged the iPad or stop iTunes or rebooted it would have corrupted the iPad and I would have had to reload everything again. That's because it happen once before like that. So I hope this works you someone else out there...

  • In the iCloud preferences, there is a message asking for software update to use the "find my mac" option.  However, my mac is updated.  What should i do?

    In the iCloud preferences, there is a message asking for software update to use the "find my mac" option.  However, my mac is updated.  What should i do?

    https://crash-stats.mozilla.com/report/pending/40811976-6063-4df1-b2ba-b82972110929
    https://crash-stats.mozilla.com/report/pending/1f1e849a-240e-4017-bbfc-485832110929
    https://crash-stats.mozilla.com/report/pending/2b3b5fc3-f3ed-47df-aa8e-293452110929
    https://crash-stats.mozilla.com/report/index/bp-9156003e-2cd4-488f-a6fb-195ff2110930
    https://crash-stats.mozilla.com/report/pending/7bc611b9-6d9d-4a4e-a32d-443ba2110929
    https://crash-stats.mozilla.com/report/pending/477fda1b-b03b-469e-ad85-878282110929
    https://crash-stats.mozilla.com/report/pending/4983f2ce-592c-4963-bcf5-319bb2110929
    https://crash-stats.mozilla.com/report/index/bp-25958efc-bef3-4366-a857-1cfa92110930
    https://crash-stats.mozilla.com/report/pending/881f2ee5-0b3c-4470-8590-401572110929
    https://crash-stats.mozilla.com/report/pending/7f30c50f-833e-41d3-946e-e66d62110930
    https://crash-stats.mozilla.com/report/index/bp-51bb0656-a417-42ff-87fb-b72942110930

  • I have three iPhone 4 models purchased in late 2010 that all share the same iTunes account (apps, music, etc), but I can only update the software on one of the three iPhones. What is the best solution to manage these devices for software updates, apps?

    I have three iPhone 4 models purchased in late 2010 (for my family) that all share the same iTunes account for access to apps and music, but each phone/user still has his/her custom contact list, email accts, and select lists of apps and music from the one iTunes acct library.  The problem is I can only update the software on one of the three iPhones – the primary phone I used to setup the iTunes acct. What is the best solution to manage these devices for software updates, apps? This is probably a common problem with families wanting to share apps and music without realizing the issues created by this approach. As it stands today... the first (primary) iPhone associated with the iTune acct has been updated with the latest software version 5.1.1 and sync'd up with all the apps, music, etc from the one iTune acct, while the other two iPhones are still running on the original software version 4.0.2 and are experiencing problems now. I was advised by AT&T back in January that it would be necessary to setup separate iTunes accts for the second and third iPhones in order to receive system updates. The problem would be how to keep all the apps, etc from being deleted off the second and third phones that were originally loaded from the one iTunes acct. Since this AT&T advice was prior to iCloud coming out, would iCloud be a better solution or at least part of the solution? I really don't yet understand how iCloud works. Hopefully, someone out there can help me??  Please?

    I have three iPhone 4 models purchased in late 2010 (for my family) that all share the same iTunes account for access to apps and music, but each phone/user still has his/her custom contact list, email accts, and select lists of apps and music from the one iTunes acct library.  The problem is I can only update the software on one of the three iPhones – the primary phone I used to setup the iTunes acct. What is the best solution to manage these devices for software updates, apps? This is probably a common problem with families wanting to share apps and music without realizing the issues created by this approach. As it stands today... the first (primary) iPhone associated with the iTune acct has been updated with the latest software version 5.1.1 and sync'd up with all the apps, music, etc from the one iTune acct, while the other two iPhones are still running on the original software version 4.0.2 and are experiencing problems now. I was advised by AT&T back in January that it would be necessary to setup separate iTunes accts for the second and third iPhones in order to receive system updates. The problem would be how to keep all the apps, etc from being deleted off the second and third phones that were originally loaded from the one iTunes acct. Since this AT&T advice was prior to iCloud coming out, would iCloud be a better solution or at least part of the solution? I really don't yet understand how iCloud works. Hopefully, someone out there can help me??  Please?

  • When I check for software updates only itunes and random other updates show up but not security updates or safari update. When i check installed updates I realized my last security update was 2011-004 and I still have safari 5.0.6. Can anyone help me?

    When I check for software updates only itunes and random other updates show up but not security updates or safari update. When i check installed updates I realized my last security update was 2011-004 and I still have safari 5.0.6. Can anyone help me?

    Don't panic. OS X 10.5.8 is the most popular PowerPC OS out there. People run it everyday without security breaches, including myself. It isn't Windows!
    If you're really that worried, I highly recommend Sophos Anti-Virus for Mac Home Edition. Supports PowerPC & Intel and Mac OS X 10.4-10.7.
    http://www.sophos.com/en-us/products/free-tools/sophos-antivirus-for-mac-home-ed ition/system-requirements.aspx
    Direct download: http://downloads.sophos.com/home-edition/savosx_73_he.dmg

  • Itunes says that the version of software on my ipod touch 3rd gen is up to date, but IOS 5 is avaliable. I have checked for software updates for days but it keeps saying that 4.2.1 is the current version. Why cant i get IOS 5?

    itunes says that the version of software on my ipod touch 3rd gen is up to date, but IOS 5 is avaliable. I have checked for software updates for days but it keeps saying that 4.2.1 is the current version. Why cant i get IOS 5?

    bradenfromwaikerie wrote:
    itunes says that the version of software on my ipod touch 3rd gen is up to date, but IOS 5 is avaliable. I have checked for software updates for days but it keeps saying that 4.2.1 is the current version. Why cant i get IOS 5?
    because you do not have a 3rd generation device. The OS Version says so , otherwise you would be at 4.3.5 minimum and also Itunes is also always correct in determining if you have the latest OS ( if not it fetches the newest from Apple's Servers ) . And because a 2nd generation iPod stops at 4.2.1 you can't get the newest OS, because your device is old. Buy a new iPod , they have iOS5 preinstalled.

  • I received a pop-up advising me that update OSX 10.8.3 was available.  I started the download, but it was fouled by something; it did not download/install.  Now I ask for software updates and they tell me "no software updates available."  Help.

    I received a pop-up telling me that OSX 10.8.3 was available.  I started the download/ installation, but something interrupted the process and it was not downloaded and/or installed.  Now when I ask for software updates, I det the message that "no updates available."  What do I do to get thei update?

    If the installation didn't finish, maybe OS X 10.8.3 was installed partially, and it doesn't show up because the updater already updated the OS X version to 10.8.3, although it doesn't mean that everything was installed and updated. Just to make sure that everything is updated to the version included in 10.8.3, reinstall it with the Combo installer > http://support.apple.com/kb/DL1640

  • HT5362 How do I turn off notifications for Software Updates? 'App Store' doesn't show in the list of notification apps. I want the background checks for updates, just not the notifications.

    How do I turn off notifications for Software Updates?
    In the 'Notifications' section of the 'System Preferences' app, there is no tab for managing the notifications of System Updates nor App Store.
    Hey--- I like auto-checking for updates, and hey--- I like auto-downloading them in the background.
    BUT I do not like being notified of updates in the middle of working! Especially when it's iTunes updates. Grrrr.
    Any chance this is easy and I just missed it?
    THANKS COMMUNITY!

    Settings > Notification Center > Mail > Select the mail account (if more than one) > Alert Sound > None

  • Best Practice for Software Update Structure?

    Is there a best practice guide for Software Update Structure?  Thanks.  I would like to keep this neat and organized.  I would also like to have a test folder for updates with test group.  Thanks.

    Hi,
    Meanwhile, please refer to the following blog get more inspire.
    Managing Software Updates in Configuration Manager 2012
    http://blogs.technet.com/b/server-cloud/archive/2012/02/20/managing-software-updates-in-configuration-manager-2012.aspx
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

Maybe you are looking for

  • Installation AS 9.0.2 on RedHat 9.0 Linux

    I have problem during installation Oracle AS 9.0.2 on RedHat 9.0 After running installation process (2% in process bar) it process stop. In /u01/home/oracle/oraInventory/logs/oraInstall2005-01-04_02-20-10PM.err I see: java.lang.UnsatisfiedLinkError:

  • Issue in COPA Report Creation

    Dear All, I ave an issue in creation of COPA repor in KE30 We have created all P&L item as cost element except 1.Change in WIP for WIP calculation in Product Costing 2. Price Difference (OBYC- PRD) Variance will be calculated from settlement profile

  • Clarification required regarding Flex Server

    hi I have been studying about the new flex 2 technology and have downloaded the flex builder 2trail. I am able to build flex application successfully and also have been able to deploy it on Windows Office live . But i am very much confused about Flex

  • Decimal values not showing in PO output

    In PO qty is created with decimal values ( 30.500 M) when print  the output it is coming as 31 m ( values is getting rounded off) PO is created with ref to sales order , where as qty is  EA in SO . ( Qty EA is not affecting PO / PR) Please advise on

  • Help! Advice please...

    Hi, After a year of being on Infinity 2 with consistent speeds of around 40Mb down and 7Mb up (not great but ok I suppose) we had a problem last Sunday when we lost both telephone & broadband connection.  Completely dead. Immediately reported to BT v