Time to time I use Logparser to extract information from IISLogs. Here is a query to extract the top 10 downloads.
logparser.exe "select top 10 count(*) as hits, cs-uri-stem from ex*.log where cs-uri-stem like '%.zip%' group by cs-uri-stem order by hits DESC"