I cannot create a working collection to list Office XP SP2 or SP3 systems. The thing is that I have created several different queries and they work fine, but when I create the collection based in any of these queries it does not work, does not list anything at all.
The query I am currently using to list all Office XP SP3 systems is:
select distinct SMS_R_System.Name, SMS_G_System_OPERATING_SYSTEM.Name, SMS_G_System_SoftwareProduct.ProductName, SMS_G_System_SoftwareProduct.ProductVersion from SMS_R_System inner join SMS_G_System_OPERATING_SYSTEM on SMS_G_System_OPERATING_SYSTEM.ResourceID = SMS_R_System.ResourceId inner join SMS_G_System_SoftwareProduct on SMS_G_System_SoftwareProduct.ResourceID = SMS_R_System.ResourceId where SMS_G_System_SoftwareProduct.ProductName like "%Office XP%" and SMS_G_System_SoftwareProduct.ProductVersion = "10.0.6626" order by SMS_R_System.Name
I found this document useful to know how to check the version of Office XP:
Can someone post what query you use to check for Office XP version? Is there any way to check the file version of mso.dll?
Thank you.
The query I am currently using to list all Office XP SP3 systems is:
select distinct SMS_R_System.Name, SMS_G_System_OPERATING_SYSTEM.Name, SMS_G_System_SoftwareProduct.ProductName, SMS_G_System_SoftwareProduct.ProductVersion from SMS_R_System inner join SMS_G_System_OPERATING_SYSTEM on SMS_G_System_OPERATING_SYSTEM.ResourceID = SMS_R_System.ResourceId inner join SMS_G_System_SoftwareProduct on SMS_G_System_SoftwareProduct.ResourceID = SMS_R_System.ResourceId where SMS_G_System_SoftwareProduct.ProductName like "%Office XP%" and SMS_G_System_SoftwareProduct.ProductVersion = "10.0.6626" order by SMS_R_System.Name
I found this document useful to know how to check the version of Office XP:
Can someone post what query you use to check for Office XP version? Is there any way to check the file version of mso.dll?
Thank you.