cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
btudisca
Engaged Sweeper
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...
1 ACCEPTED SOLUTION
Esben_D
Lansweeper Employee
Lansweeper Employee
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.

Where tblSoftwareUni.softwareName Not Like '%Microsoft%' And
tblSoftwareUni.softwareName Not Like '%Windows%'


View solution in original post

1 REPLY 1
Esben_D
Lansweeper Employee
Lansweeper Employee
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.

Where tblSoftwareUni.softwareName Not Like '%Microsoft%' And
tblSoftwareUni.softwareName Not Like '%Windows%'