LOGPARSER #2: Know what browsers your users have

This script will give you all the browser types hitting your site, order by most used.

SELECT
distinct cs(User-Agent),
count(*) as hits
INTO useragentsalltypes.txt
FROM
logs\iis\ex*.log
GROUP BY
cs(user-agent)
ORDER BY
hits
DESC

//Anders