I am brand new to Parallels and have only a month of hands-on experience with SCCM. I need to make a Collection/Query that shows me all the Macs that have Google Chrome. The WQL query for Windows is:
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_INSTALLED_SOFTWARE on SMS_G_System_INSTALLED_SOFTWARE.ResourceID = SMS_R_System.ResourceId
where SMS_G_System_INSTALLED_SOFTWARE.ARPDisplayName like "Google Chrome%"
When I try to blend this query with the Parallels built-in query for Macs, I get zero results:
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_INSTALLED_SOFTWARE on SMS_G_System_INSTALLED_SOFTWARE.ResourceID = SMS_R_System.ResourceId
where SMS_G_System_INSTALLED_SOFTWARE.ARPDisplayName like "Google Chrome%" AND
(ClientVersion LIKE '%-PMA' AND OperatingSystemNameandVersion LIKE '%Mac OS X%')
So is the data for Mac software inventory in a different table? Is there any documentation of the Parallels SCCM database schema?
I need to find Macs that do and don't have Chrome. In the SCCM Resource Explorer, I know the data exists!