Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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