0

Is there a way to find out the bandwidth usage of a certain mime-type on Windows Server?

Eg. How much GB of images is my server serving each month?

mrtnvh
  • 1

1 Answers1

0

This info is logged within the default-settings of the IIS-Logfiles and can be calculated from there.

You can use the field cs-uri-stem to check if it was an picture and if so you could add together the fields sc-bytes

Propably the most easy way is to do it by powershell.

How-to use PowerShell to parse IIS logs file

Parsing ISS Logs in Powershell

benniz
  • 46
  • 5