
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-21-2012 11:40 PM
Here's a quick report that will show you a list of PCs that do not have a particular piece of software installed on them. Simply replace '%Adobe Flash Player %' with whatever software you are looking for.
If you are looking for something like Adobe Reader/Acrobat and need to check for multiple entries, the following can be used as well:
Select Distinct Top 1000000 tblComputers.Computername, tblComputers.ComputerUnique From tblSoftware soft Inner Join tblComputers On soft.ComputerName = tblComputers.Computername Where (Select Count(*) From tblSoftware Where tblSoftware.softwareName Like '%Adobe Flash Player %' And tblSoftware.ComputerName = soft.ComputerName) < 1
If you are looking for something like Adobe Reader/Acrobat and need to check for multiple entries, the following can be used as well:
Select Distinct Top 1000000 tblComputers.Computername, tblComputers.ComputerUnique From tblSoftware soft Inner Join tblComputers On soft.ComputerName = tblComputers.Computername Where (Select Count(*) From tblSoftware Where (tblSoftware.softwareName Like '%Adobe Acrobat%' Or tblSoftware.softwareName Like '%Adobe Reader%') And tblSoftware.ComputerName = soft.ComputerName) < 1
Solved! Go to Solution.
Labels:
- Labels:
-
Report Center
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-22-2012 06:04 PM
Something similar to the report below will work as well. (You do not really need to perform a count.)
Select Top 1000000 tblComputers.Computername, tblComputers.ComputerUnique, tblComputers.Domain From tblComputers Where tblComputers.Computername Not In (Select tblSoftware.ComputerName From tblSoftware Where tblSoftware.softwareName Like '%YourSoftware%') Order By tblComputers.Computername
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-22-2012 06:04 PM
Something similar to the report below will work as well. (You do not really need to perform a count.)
Select Top 1000000 tblComputers.Computername, tblComputers.ComputerUnique, tblComputers.Domain From tblComputers Where tblComputers.Computername Not In (Select tblSoftware.ComputerName From tblSoftware Where tblSoftware.softwareName Like '%YourSoftware%') Order By tblComputers.Computername
