Dynamic collection for PCs with non-standard software
I'd like to create a collection to look for PCs with software installed that doesn't match a list of standard applications. I'm not sure exactly how to go about creating one like that. Can anyone point me in the right direction?
0
Comments
You will probably be best served by a SQL report for this, rather than a collection right off the bat.
Here's an example I put together to use as a baseline:
You will want to put ALL of the applications you consider as standard in the list.
For example:
% is used as a wildcard to catch various versions and types of applications, like Flash for IE, Flash for Firefox, and any kind of Office program (LibreOffice, Microsoft Office and related apps, etc). That way, you won't have to make a new item in the list for multiple branches of one application.
Hope that helps!
I'm not the best with collections, but I *think* this is what you would want to do if you really want a dynamic collection:
Of course, both the SQL report method AND the dynamic collection are going to take a while to get just right, depending on how many apps you consider to be "standard" for your environment.
That does help. I'm going to play around with the SQL option for a while. Thanks!
this is very quick and useful query, I added my own PC also to list to be safe side cause you know IT pc-s :P
--
select
Computers.Name as 'Computer Name',
Computers.Description as 'Description',
CurrentUser as 'User',
Applications.Name as 'Application Name',
Applications.Publisher as 'Publisher',
Applications.InstallDate as 'Installed Date'
from Computers INNER JOIN Applications ON Applications.ComputerId=Computers.ComputerId
where NOT Applications.Name LIKE '%7-Zip%'
where NOT Applications.Nam... etc.
AND NOT Applications.Publisher LIKE '%Realtek%'
AND NOT Applications.Publi.... etc
AND NOT Computers.Name LIKE '%MYPCNAME%'
order by Applications.Name
--