I'm trying to set up an application from a third party, which requires a supporting website hosted in my local IIS. I've created a website exactly as explained in their install guide, but am having some problems, and would like to see what the IIS log has to say. Embarrassingly enough, the problem is I can't find the log files!
So my question is: Where does IIS7 store logs by default?
I think the Default place for IIS logging is:
c:\inetpub\wwwroot\log\w3svc
Enabling Tracing may be a better alternative to the Windows Event Log. This gave me the information I needed to fix my own WebService.
I have found the IIS Log files at the following location.
which help to fix my issue.
I'm adding this answer because after researching the web, I ended up at this answer but still didn't know which subfolder of the IIS logs folder to look in.
If your server has multiple websites, you will need to know the IIS ID for the site. An easy way to get this in IIS is to simply click on the Sites folder in the left panel. The ID for each site is shown in the right panel.
Once you know the ID, let's call it n, the corresponding logs are in the W3SVCn subfolder of the IIS logs folder. So, if your website ID is 4, say, and the IIS logs are in the default location, then the logs are in this folder:
Acknowlegements:
A much easier way to do this is using PowerShell, like so:
or simply
if you just need the info for yourself and don't mind parsing the result in your brain :).
For bonus points, append
| ii
to the first command to open in Explorer, or| gci
to list the contents of the folder.Try the Windows event log, there can be some useful information