We have an SMS 2.0 environment. We run the following query to find versions of MS Word. This query is listing a few machines that do not have the executable with the specified version. I have run the client cleaner on the computers with a /scrub parameter, and deleted the system in the SMS console. I then re-install the sms client and yet the version of winword reported is v8 not the 11 that it should be. Can anyone offer some insight or tip to get the machines to report correctly? The query is:
select distinct PC.Name, Last.FullUserName, PC.OperatingSystemNameandVersion, PC.IPSubnets, sw.FileName, sw.FileVersion, Last.UserName, PC.ResourceID, PC.ResourceType from SMS_R_System as PC inner join SMS_G_System_SoftwareFile as sw on sw.ResourceID = PC.ResourceId full join SMS_R_User as Last on Last.UserName=PC.LastLogonUserName
where (sw.FileName = "winword.exe" and sw.FileVersion like "8.%")
Thanks,
Michael
select distinct PC.Name, Last.FullUserName, PC.OperatingSystemNameandVersion, PC.IPSubnets, sw.FileName, sw.FileVersion, Last.UserName, PC.ResourceID, PC.ResourceType from SMS_R_System as PC inner join SMS_G_System_SoftwareFile as sw on sw.ResourceID = PC.ResourceId full join SMS_R_User as Last on Last.UserName=PC.LastLogonUserName
where (sw.FileName = "winword.exe" and sw.FileVersion like "8.%")
Thanks,
Michael