fr43nk 10 Posted October 18, 2012 Report Share Posted October 18, 2012 Hallo. Ich möchte eine Sammlung erstellen, in der alle Clients landen, die einen bestimmten Microsoft Office 2010 Patch installiert haben. Dafür denke ich, dass eine Mitgliedschaftsregel mit einer entsprechenden Abfrage am besten geeignet ist. Soweit so gut. Das ist mein bisheriger Ansatz: select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_PatchStatusEx on SMS_G_System_PatchStatusEx.ResourceID = SMS_R_System.ResourceId where SMS_G_System_PatchStatusEx.ID = "MS12-060" and SMS_G_System_PatchStatusEx.LastStateName = "Installed" SMS_G_System_PatchStatusEx dürfte allerdings nicht die relevanten Informationen enthalten. Kann mir jemand sagen, welchen Table ich hierfür brauche ? MFG Franz-Martin Pollany Quote Link to comment
TorstenM 20 Posted October 19, 2012 Report Share Posted October 19, 2012 Unter Add/Remove Programs taucht der Fix nicht auf? Quote Link to comment
fr43nk 10 Posted October 24, 2012 Author Report Share Posted October 24, 2012 nein, leider nicht, denn dann wärs einfacher zumindest weiß ich jetzt schon mal, dass die sicht SMS_G_System_PatchStatusEx in sccm 2012 nicht mehr existiert. anscheinend muss es über sms_g_system_ci_compliancestate gemacht werden select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_CI_ComplianceState on SMS_G_System_CI_ComplianceState.ResourceID = SMS_R_System.ResourceID WHERE SMS_G_System_CI_ComplianceState.CI_UniqueID = "49696650-4242-42d5-931d-fb097c1f786e" AND SMS_G_System_CI_ComplianceState.IsDetected = 1 dennoch leider noch kein erfolg Quote Link to comment
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.