Answered by:
Outlook 2007 - 2010 - 2013 and up

Question
-
Hello,
When I am running the queries:
SELECT b.Netbios_Name0, b.User_Name0, CASE WHEN a.FileVersion LIKE '11.%' THEN 'Office 2003' WHEN a.FileVersion LIKE '12.%' THEN 'Office 2007' WHEN a.FileVersion LIKE '14.%' THEN 'Office 2010' WHEN a.FileVersion LIKE '15.%' THEN 'Office 2013' ELSE 'NULL' END AS 'Office Version', a.FileName, a.FileVersion, a.FilePath FROM v_GS_SoftwareFile a JOIN v_R_System b ON a.ResourceID = b.ResourceID WHERE FileName = 'outlook.exe' ORDER BY b.Netbios_Name0
it is giving me one item per machine concerning outlook15 or outlook14 folder for outlook.exe but when looking at Resource Explorer I am getting confuse:
I see Microsoft Office Outlook MUI (English) 2010 but also Microsoft Outlook MUI (English) 2013... why do I have two items ?
I am trying to get a list of machines with potentially having two versions of outlook !!!
Thanks,
Dom
System Center Operations Manager 2007 / System Center Configuration Manager 2007 R2 / Forefront Client Security / Forefront Identity Manager
Tuesday, March 22, 2016 7:04 PM
Answers
-
You are comparing apples and oranges.
Your query is using SW inv. (yuck) but your screenshot is showing HW Inv.
so... you need to pick one of the two type of inv. and then write your query to match it.
Garth Jones
Blog: http://www.enhansoft.com/blog Old Blog: http://smsug.ca/blogs/garth_jones/default.aspx
Twitter: @GarthMJ Book: System Center Configuration Manager Reporting Unleased
- Edited by Garth JonesMVP Monday, August 1, 2016 5:45 PM typo
- Proposed as answer by Garth JonesMVP Sunday, February 26, 2017 4:33 PM
- Marked as answer by Garth JonesMVP Saturday, April 8, 2017 1:38 PM
Tuesday, March 22, 2016 7:59 PM
All replies
-
You are comparing apples and oranges.
Your query is using SW inv. (yuck) but your screenshot is showing HW Inv.
so... you need to pick one of the two type of inv. and then write your query to match it.
Garth Jones
Blog: http://www.enhansoft.com/blog Old Blog: http://smsug.ca/blogs/garth_jones/default.aspx
Twitter: @GarthMJ Book: System Center Configuration Manager Reporting Unleased
- Edited by Garth JonesMVP Monday, August 1, 2016 5:45 PM typo
- Proposed as answer by Garth JonesMVP Sunday, February 26, 2017 4:33 PM
- Marked as answer by Garth JonesMVP Saturday, April 8, 2017 1:38 PM
Tuesday, March 22, 2016 7:59 PM -
I will pick HW a it seems more accurate so far...
Thanks,
DOmSecurity / System Center Operations Manager 2012 / System Center Configuration Manager 2012 / SQL System Center Operations Manager 2007 / System Center Configuration Manager 2007 R2 / Forefront Client Security / Forefront Identity Manager
Monday, August 1, 2016 5:38 PM