Jump to content

SCCM 2012 - WQL Collection Query


Der letzte Beitrag zu diesem Thema ist mehr als 180 Tage alt. Bitte erstelle einen neuen Beitrag zu Deiner Anfrage!

Recommended Posts

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

Link to comment

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

Link to comment
Der letzte Beitrag zu diesem Thema ist mehr als 180 Tage alt. Bitte erstelle einen neuen Beitrag zu Deiner Anfrage!

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...