8/25/2010

SCCM PatchMgmt - Custom Reports

Here are some SCCM Patch Managenment Reports which i've created for my customers

Maintenance/Patch - Windows and each Computer
  1. select   
  2. v_Collection.Name as CollectionName,   
  3. v_ServiceWindow.Description,   
  4. v_FullCollectionMembership.Name as Computername    
  5. from v_ServiceWindow   
  6. inner join v_FullCollectionMembership on (v_FullCollectionMembership.CollectionID = v_ServiceWindow.CollectionID)   
  7. inner join v_Collection on (v_Collection.CollectionID = v_FullCollectionMembership.CollectionID)   
  8. order By v_Collection.Name   



Required Updates for a specific Computer
  1. select   
  2. v_R_System.name0 as 'Computername',   
  3. v_UpdateInfo.Title as 'Updatename',   
  4. v_StateNames.Statename   
  5. from   
  6. v_StateNames,   
  7. v_Update_ComplianceStatusAll   
  8. Inner Join v_R_System On (v_R_System.ResourceID = v_Update_ComplianceStatusAll.ResourceID)   
  9. Inner Join v_UpdateInfo On (v_UpdateInfo.CI_ID = v_Update_ComplianceStatusAll.CI_ID)   
  10. where   
  11. v_StateNames.TopicType = 500 and   
  12. v_StateNames.StateID = v_Update_ComplianceStatusAll.Status and   
  13. v_R_System.name0 = @Computername and   
  14. Statename = 'Update is required'   


Count of Required Updates for all Computers
  1. select   
  2. v_R_System.Name0 as 'Computername',   
  3. Count(v_StateNames.Statename) as 'Required Updates'   
  4. from   
  5. v_StateNames,   
  6. v_Update_ComplianceStatusAll   
  7. Inner Join v_R_System On (v_R_System.ResourceID = v_Update_ComplianceStatusAll.ResourceID)   
  8. Inner Join v_UpdateInfo On (v_UpdateInfo.CI_ID = v_Update_ComplianceStatusAll.CI_ID)   
  9. where   
  10. v_StateNames.TopicType = 500 and   
  11. v_StateNames.StateID = v_Update_ComplianceStatusAll.Status and   
  12. v_StateNames.Statename = 'Update is required'   
  13. Group By v_R_System.Name0   


Number of Computers requiring an Update
  1. select   
  2. v_UpdateInfo.Title as 'Updatename',   
  3. Count(v_R_System.name0) as 'Count of Computers'   
  4. from   
  5. v_StateNames,   
  6. v_Update_ComplianceStatusAll   
  7. Inner Join v_R_System On (v_R_System.ResourceID = v_Update_ComplianceStatusAll.ResourceID)   
  8. Inner Join v_UpdateInfo On (v_UpdateInfo.CI_ID = v_Update_ComplianceStatusAll.CI_ID)   
  9. where   
  10. v_StateNames.TopicType = 500 and   
  11. v_StateNames.StateID = v_Update_ComplianceStatusAll.Status and   
  12. Statename = 'Update is required'   
  13. Group By v_UpdateInfo.Title   
  14. Order By 'Count of Computers' DESC   


Assinged number of Updates for each Computer
  1. select   
  2. v_R_System.Name0 as Computername,   
  3. Count(v_UpdateInfo.Title) as Updates  
  4. from v_UpdateState_Combined  
  5. inner join v_R_System on (v_R_System.ResourceID = v_UpdateState_Combined.ResourceID)   
  6. inner join v_CIAssignmentToCI on (v_CIAssignmentToCI.CI_ID = v_UpdateState_Combined.CI_ID)   
  7. inner join v_CIAssignment on (v_CIAssignment.AssignmentID = v_CIAssignmentToCI.AssignmentID)   
  8. inner join v_UpdateInfo on (v_UpdateInfo.CI_ID = v_UpdateState_Combined.CI_ID)   
  9. inner join v_StateNames on (v_StateNames.TopicType = v_UpdateState_Combined.StateType)   
  10. where  
  11. v_StateNames.StateID = v_UpdateState_Combined.StateID and  
  12. v_StateNames.StateName not like 'Update is not required'  
  13. Group by v_R_System.Name0  


Assinged Updates and current State for a specific Computer
  1. select   
  2. v_R_System.Name0 as 'Computername',   
  3. v_UpdateInfo.Title as 'UpdateDescription',   
  4. v_StateNames.StateName as 'State'  
  5. from v_UpdateState_Combined, v_CIAssignmentToCI,v_CIAssignment,  v_UpdateInfo,v_StateNames,  v_R_System  
  6. where v_R_System.Name0 =  @MACHINENAME and  
  7. v_UpdateState_Combined.ResourceID = v_R_System.ResourceID and  
  8. v_UpdateState_Combined.CI_ID = v_CIAssignmentToCI.CI_ID and  
  9. v_CIAssignmentToCI.AssignmentID = v_CIAssignment.AssignmentID and  
  10. v_UpdateState_Combined.CI_ID = v_UpdateInfo.CI_ID and  
  11. v_UpdateState_Combined.StateType = v_StateNames.TopicType and   
  12. v_UpdateState_Combined.StateID = v_StateNames.StateID and  
  13. v_StateNames.StateName not like 'Update is not required'  
  14. Order By UpdateDescription  


Assinged Updates in an UpdateList and current State for a specific Computer
  1. select distinct v_R_System.Name0,v_StateNames.StateName, v_UpdateInfo.Title  
  2. from v_AuthListInfo,v_CIRelation,v_UpdateState_Combined,v_StateNames,v_UpdateInfo,v_R_System  
  3. where v_AuthListInfo.CI_ID = v_CIRelation.FromCIID and  
  4. v_CIRelation.ToCIID = v_UpdateInfo.CI_ID and  
  5. v_UpdateState_Combined.CI_ID = v_CIRelation.ToCIID and  
  6. v_StateNames.TopicType = v_UpdateState_Combined.StateType and  
  7. v_StateNames.StateID = v_UpdateState_Combined.StateID and  
  8. v_R_System.ResourceID = v_UpdateState_Combined.ResourceID and  
  9. v_R_System.Name0 = @COMPUTERNAME and  
  10. v_AuthListInfo.Title = @UPDATELIST and  
  11. v_StateNames.StateName not like 'Update is not required'   


Number of assinged Updates in an UpdateList and current State for all Computers
  1. select  v_R_System.Name0 as Computername , v_StateNames.StateName ,count(v_UpdateInfo.Title) as UpdateCount, v_AuthListInfo.Title as Updatelist  
  2. from v_AuthListInfo  
  3. inner join v_CIRelation On (v_CIRelation.FromCIID = v_AuthListInfo.CI_ID)  
  4. inner join v_UpdateInfo On (v_UpdateInfo.CI_ID = v_CIRelation.ToCIID)  
  5. inner join v_CIAssignmentToCI on (v_CIAssignmentToCI.CI_ID = v_CIRelation.ToCIID)  
  6. inner join v_CIAssignmentTargetedMachines on (v_CIAssignmentTargetedMachines.AssignmentID = v_CIAssignmentToCI.AssignmentID)  
  7. inner join v_R_System on (v_R_System.ResourceID = v_CIAssignmentTargetedMachines.ResourceID)  
  8. inner join v_UpdateState_Combined on (v_UpdateState_Combined.CI_ID = v_CIRelation.ToCIID)  
  9. inner join v_StateNames on (v_StateNames.StateID = v_UpdateState_Combined.StateID)  
  10. where v_AuthListInfo.Title = @UPDATELIST and  
  11. v_UpdateState_Combined.ResourceID = v_R_System.ResourceID and  
  12. v_StateNames.TopicType = v_UpdateState_Combined.StateType  
  13. and v_StateNames.StateName not like 'Update is not required'  
  14. group by v_R_System.Name0, v_StateNames.StateName, v_AuthListInfo.Title  
  15. order by v_R_System.Name0  


Number of Updates in an Update Deployment
  1. select AssignmentName as Deployment,Count(CI_ID) as UpdateCount  
  2. from v_CIAssignment   
  3. Inner Join v_CIAssignmentToCI On (v_CIAssignmentToCI.AssignmentID = v_CIAssignment.AssignmentID)  
  4. where AssignmentName Like 'Update%'   
  5. Group By AssignmentName  
  6. order By AssignmentName  


All Updates in an Updatelist
  1. select distinct v_UpdateInfo.Title  
  2. from v_AuthListInfo,v_CIRelation,v_UpdateInfo  
  3. where v_AuthListInfo.CI_ID = v_CIRelation.FromCIID and  
  4. v_CIRelation.ToCIID = v_UpdateInfo.CI_ID and  
  5. v_AuthListInfo.Title = @UPDATELIST  
  6. order by v_UpdateInfo.Title  

15 comments:

Anonymous said...

Hello! I have attempted to use your report "Assinged Updates and current State for a specific Computer". I created the prompts for COMPUTERNAME and UPDATELIST by copying the scripts from other existing reports.

However when run your report I get "No matching records could be found."

Would you have any insight into why this would be the case?

Thanks!
Joel

Anonymous said...

Hello! I am trying to use your report "Assinged Updates in an UpdateList and current State for a specific Computer". I added in the prompt for COMPUTERNAME and UPDATELIST by copying the prompts for existing reports. When I run the report I get "No matching records found.".

Would you have any ideas why this isn't working?
Thanks,
Joel

Unknown said...

Hello, I'm trying to use your report "Assinged Updates in an UpdateList and current State for a specific Computer". I have added in the two prompts for COMPUTERNAME and UPDATELIST by copying the scripts from existing reports.

When I run the report I get "No matching records found". Do you have any idea why this isn't working?

merowinger said...

Are the prompts are correct?
Are you sure the Client has reported the Update Scan Result to WSUS and SCCM?

HeyAdmin said...

Do I need to create prompts for these reports? Sorry...new to SCCM reports.

merowinger said...

yes you have to define a prompt for every variable (@xxx).

For the Computername you can create the prompt with this query:
select * from v_R_System

For the Updatelist you can create the prompt with this query:
select * from v_AuthListInfo

HeyAdmin said...

I'm looking for a single report that prompts for an update list and collection, and lists all the required patches for that collection. The first column is the machine name, second column is the bulletin id, third column is a description of the bulletin. If a machine is missing more than one patch, there would be multiple rows for that machine. Sort of like this:

Machine1 MS12-033
Machine1 MS12-054
Machine2 MS12-025
Machine3 MS11-044

No summary required...just the raw, missing patches. I would export this and manipulate it myself in Excel to get the summary I want.

thanks for any suggestions...

HeyAdmin said...

In my example above, the third column didnt' appear as I had typed in in my post. It would be a description of the required bulletin ID.

merowinger said...

Hi HeyAdmin,
thank you for you interest.
Please post your question in a tech forum like experts-exchange.com or myitforum.com as i don't have the time to answer it at the moment.
Thank you

Anonymous said...

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
Total patch count in deployment
Total patch count installed
Total patch count missing
Total patch count not required

Anonymous said...

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 patch count in deployment
Total patch count installed
Total patch count missing
Total patch count not required

Anonymous said...

Still having trouble getting the prompts to work properly in the "Assinged Updates in an UpdateList and current State for a specific Computer" report.. Can you explain how to properly create these prompts?

Anonymous said...

These were a huge help! Thanks so much for posting them. They have proven useful within some of the Orchestrator runbooks for patch automation.

MusicManiac said...

Hey,

VERY USEFUL! THANKS!

Anonymous said...

Very usefull and still working with SCCM 1802 !