Jump to content


  • 0
TronixS

How i can find out how many Office Products are installed in the DOMAIN

Question

Hello,

 

i read my SCCM 2007 Book, search many in the WWW und try out Something but the results are not okay.

 

Can anyone explain me how i make a easy query to find out How many Office 2000 / XP / 2003 / 2007 are installed in my Domain.

 

All clients have the actually Agent installed but not all Systems are installed with SCCM, we have changed our Installation System Server from SYMANTEC LSD to SCCM 2007.

 

Thank. ;)

 

with best regards

André Jansen

Share this post


Link to post
Share on other sites

2 answers to this question

Recommended Posts

  • 0

This is a very basic report that will do what you want:

 

SELECT

DisplayName0,

Version0,

COUNT(*)

 

FROM

v_GS_ADD_REMOVE_PROGRAMS

 

WHERE DisplayName0 LIKE '%Office%'

 

GROUP BY

DisplayName0,

Version0

 

If you need it more specified change the row in red to suit your needs.

Share this post


Link to post
Share on other sites

  • 0

Hi,

Here is the simple report which gives you list of machines with office in the domain on XP machines.

 

 

SELECT
c.Name0,
a.DisplayName0

FROM 
v_GS_ADD_REMOVE_PROGRAMS a,
v_R_System c,
v_FullCollectionMembership b,
v_GS_OPERATING_SYSTEM d

WHERE a.ResourceID = c.ResourceID
AND b.ResourceID = c.ResourceID
AND a.DisplayName0 like "%Office%%" 
AND d.Caption0 like "Microsoft Windows XP Professional%"
AND b.CollectionID=@coll

GROUP BY
c.Name0,
b.CollectionID,
a.DisplayName0,
d.Caption0

ORDER BY c.Name0

 

Prompt:

begin
if (@__filterwildcard = '')
SELECT DISTINCT CollectionID, Name FROM v_Collection ORDER BY Name
else
SELECT DISTINCT CollectionID, Name FROM v_Collection
WHERE CollectionID like @__filterwildcard
ORDER BY Name
end

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...


×
×
  • Create New...

Important Information

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.