Link to home
Start Free TrialLog in
Avatar of mobanker
mobankerFlag for United States of America

asked on

Find software location in System Center 2012 Configuration Manager

My Configuration Manager 2012 is properly inventorying software.  My question is, when it shows a software count of say "5", how can I find what machines that software is located on?  I would prefer not to go through every device one by one.

Thank you.
Avatar of Nagendra Pratap Singh
Nagendra Pratap Singh
Flag of Australia image

You can click on 5. which report are you looking at?
Or do a simple query in SQL Server. Here a example with Skype

SELECT sys.name0, user_name0, DisplayName0, Version0
FROM v_Add_Remove_Programs
inner join v_R_System sys on sys.ResourceID = [v_Add_Remove_Programs].ResourceID 
WHERE DisplayName0 LIKE '%skype%'
order by version0

Open in new window

Avatar of mobanker

ASKER

Nagendra,

The software counts are not links.  I have posted a image with this response as to where I am looking.
Configmanager.jpg
Merowinger,

Are you doing this query inside of Configuration Manager, or actually inside of SQL?  I see the query builder inside of Configuration Manager, but will need to learn a bit on actual usage of the builder.
If you are doing this inside of SQL, I can do that, but need to know learn how to hit Configuration Manager database and which table to use.
ASKER CERTIFIED SOLUTION
Avatar of mobanker
mobanker
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
It gives the easiest answer.