Reputation: 9171
Is there a log that lets you know when the web site was stopped and started in iis?
I'm looking for a way to see when the web site was stopped and started.
Does anyone know if there is a way to see?
Upvotes: 1
Views: 3893
Reputation: 3405
Look in Windows Event Viewer > Windows Logs > System.
Filter events with Source
= IIS-IISReset
.
An example event message is:
IIS stop command received from user NT AUTHORITY\SYSTEM. The logged data is the status code.
Upvotes: 1
Reputation: 7713
Your best bet is to put something in your global.asax file in Application_start.
You can add something to a log file, or shoot yourself an email whenever this fires.
Upvotes: 1