I use a Powershell script to, among other things, start and stop an IIS Application Pool via the following commands:
Stop-WebAppPool -Name $appPoolName;
Stop-WebAppPool -Name $appPoolName;
Is there a log file from IIS where the event, that is starting and stopping of an Application Pool, is logged?
As suggested here, I have already looked in the Event Viewer under System, but did not find anything.
I also know that the logging of Recycling can be configured in detail at the Advanced Settings of the respective Application Pool in IIS, but I am not sure if this applies to starting/stopping, because actually I am not recycling.