With the recent information regarding Quicktime on Windows, I need to get a report of all the computers within our organisation that have Quicktime installed.
Unfortunately, I am having problems with writing the query required, as I get different results, that also appear rather small (though we suspect ~10 installs on Win7, we believe that the numbers on WinXP should push us closer to 100-150 machines instead of the 20/26 we have)
What I am using at the moment is
Select SD.Name0, SF.FileName From v_Gs_SoftwareFile SF Join v_R_System SD on SD.ResourceId = SF.ResourceId Where SF.FileName Like '%Quicktimeplayer%'
Order By SD.Name0, SF.FileName
Which looks for the executable itself. This gives me a different total from
SELECT c.Name0, a.DisplayName0 FROM v_GS_ADD_REMOVE_PROGRAMS a, v_R_System c WHERE a.ResourceID = c.ResourceID AND a.DisplayName0 like '%Quicktime%' GROUP BY c.Name0, a.DisplayName0 ORDER BY c.name0
That displays any versions of Quicktime present in the Add/Remove.
Is there a better method out there for this sort of task?
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.
Hi folks -
With the recent information regarding Quicktime on Windows, I need to get a report of all the computers within our organisation that have Quicktime installed.
Unfortunately, I am having problems with writing the query required, as I get different results, that also appear rather small (though we suspect ~10 installs on Win7, we believe that the numbers on WinXP should push us closer to 100-150 machines instead of the 20/26 we have)
What I am using at the moment is
Select
SD.Name0,
SF.FileName
From v_Gs_SoftwareFile SF
Join v_R_System SD on SD.ResourceId = SF.ResourceId
Where SF.FileName Like '%Quicktimeplayer%'
Order By SD.Name0, SF.FileName
Which looks for the executable itself. This gives me a different total from
SELECT
c.Name0,
a.DisplayName0
FROM v_GS_ADD_REMOVE_PROGRAMS a, v_R_System c
WHERE a.ResourceID = c.ResourceID
AND a.DisplayName0 like '%Quicktime%'
GROUP BY c.Name0, a.DisplayName0
ORDER BY c.name0
That displays any versions of Quicktime present in the Add/Remove.
Is there a better method out there for this sort of task?
Share this post
Link to post
Share on other sites