How to list all IIS applicationpools and properties, with C#
/// <summary> /// List all properties of an IIS applicationpool /// </summary> /// <param name="serverName">Name of the IIS server e.g. localhost</param> /// <param name="appPoolName">Name of the applicationpool e.g. test</param> public void ListAppPoolProperties(string serverName, string appPoolName)…