Iis – How to find out the W3SVC number of a given IIS7.5 website

iisiis-7.5logging

I have a server running multiple websites under IIS7.5. I want to view the log files for one website in particular. In C:\inetpub\logs\LogFiles I see a number of folders, W3SVC1 through 6.

How do I find out which website corresponds to which folder? In IIS6.0 it used to tell you, but I can't find this anywhere in IIS7.5.

Best Answer

The numbers on the folders correspond to the Site ID of each specific site in IIS. If you go into Internet Manager you can see the Site ID's by clicking on the Sites node in the navigation pane.

So, if a site has ID 1 its log folder name is W3SVC1, ID2 = W3SVC2, etc.

You could also review %WinDir%\System32\Inetsrv\Config\applicationHost.Config, which contains information about all of the sites. It is XML format. You'll want to look for <site> nodes in the XML which contain an id attribute. This is the aforementioned Site ID of that specific site and will align with the number in the log folder.

<site name="Default Web Site" id="1">
Related Topic