Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-31-2017 04:50 PM
I am looking for a report to scan all the software installed on a computer except for the built in Microsoft junk like silverlight, c++, etc...
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
‎09-07-2017 04:24 PM
Currently the only option is to create a report showing all the software installed and manually exclude software based on name. We already have a built-in reports you can modify, for example: 'Windows: Installed software by computer'.
Here is an example of a Where condition you could add to the report to remove any software with the name 'Microsoft' and 'Windows' in it. You can add names or part of names to this list to fit your needs.
Here is an example of a Where condition you could add to the report to remove any software with the name 'Microsoft' and 'Windows' in it. You can add names or part of names to this list to fit your needs.
Where tblSoftwareUni.softwareName Not Like '%Microsoft%' And
tblSoftwareUni.softwareName Not Like '%Windows%'
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-07-2017 04:24 PM
Currently the only option is to create a report showing all the software installed and manually exclude software based on name. We already have a built-in reports you can modify, for example: 'Windows: Installed software by computer'.
Here is an example of a Where condition you could add to the report to remove any software with the name 'Microsoft' and 'Windows' in it. You can add names or part of names to this list to fit your needs.
Here is an example of a Where condition you could add to the report to remove any software with the name 'Microsoft' and 'Windows' in it. You can add names or part of names to this list to fit your needs.
Where tblSoftwareUni.softwareName Not Like '%Microsoft%' And
tblSoftwareUni.softwareName Not Like '%Windows%'