Hi,
I need SQL query to generate report in SCCM and having information for 'zoom client software' installed on desktop machines.
please.provide query for this.
Regards,
Hi,
I need SQL query to generate report in SCCM and having information for 'zoom client software' installed on desktop machines.
please.provide query for this.
Regards,
Zoom is user installed software and cm does not inventory that. See this blog for more details. https://www.enhansoft.com/user-installed-software-and-why-you-should-care/
Hi,
Thanks for posting in Microsoft MECM Q&A forum.
Please refer to: Hardware Inventory report does not include zoom.exe information
Thanks for your time.
Best regards,
Simon
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
Hi Simon,
Thanks. I have already enable it from hardware (Set Classes).
After that i need SQL query having information to generate report having zoom client software information on clients.
Thanks.
Hi,
Thanks for your reply.
Please below query:
select distinct SMS_R_System.Name, SMS_G_System_INSTALLED_SOFTWARE.ProductName, SMS_G_System_INSTALLED_SOFTWARE.ProductVersion 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.ProductName like "Zoom%" order by SMS_R_System.Name
Best regards,
Simon
IAfter execute t shows 'invalid object name SMS_R_System.
Thanks.
Hi,
Sorry for my delayed reply. The query is a WMI query and we can run it from SCCM console as below:
select distinct SMS_R_System.Name, SMS_G_System_INSTALLED_SOFTWARE.ProductName, SMS_G_System_INSTALLED_SOFTWARE.ProductVersion 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.ProductName like "Zoom%" order by SMS_R_System.Name
I will do more research about the SQL query, if there is any update, I will let you know. Thanks for your understanding.
Best regards,
Simon
7 people are following this question.