*I tested SergiyTsygankov query with SCCM 2007 SP2 with R2 and it worked fine.Here is a simplified query that shows only versions and counts, not computers.Select Version0, count(ResourceID)from v_GS_WindowsUpdateAgentVersiogroup by Version0*Tested with SCCM 2007 SP2 with R2This is a more accurate query with computer namesSelect WUAV.Version0, S.Name0from v_R_System as SInner Join v_GS_WindowsUpdateAgentVersio AS WUAV on S.ResourceId = WUAV.ResourceIDWhere S.Active0=1
↧