Community FAQ
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
jeffreyl
Engaged Sweeper
Does anyone have a report that will find all installed web browsers with version on all our computers - Firefox, Chrome, IE, etc.

Thanks!
1 REPLY 1
cbtg2006
Engaged Sweeper
I'd use something similar to this, add each browser you want to check for to the where clauses...
-------------
Select Top 1000000 tblComputers.ComputerName, tblComputers.ComputerUnique As Machine , tblSoftware.softwareName As Product,
tblComputers.Domain, tblComputers.Username

From tblSoftware
Inner Join tblComputers On tblSoftware.ComputerName = tblComputers.Computername
Inner Join web40ActiveComputers On tblComputers.Computername = web40ActiveComputers.Computername
--Inner Join tblRegistry On tblComputers.Computername = tblRegistry.Computername

Where
tblSoftware.softwareName Like '%Google Chrome%'
OR tblSoftware.softwareName Like '%Safari%'
OR tblSoftware.softwareName Like '%Mozilla%'

Group By tblComputers.ComputerUnique, tblComputers.ComputerName, tblSoftware.softwareName, tblComputers.Domain, tblComputers.Username
Order By tblSoftware.softwareName

Archive

This board contains archived posts from the retired Lansweeper Forum and Insiders Community.

New to Lansweeper?

Try Lansweeper For Free

Experience Lansweeper with your own data.
Sign up now for a 14-day free trial.

Try Now