How can I restart(recycle) IIS Application Pool from C# (.net 2)?

Appreciate if you post sample code?

Thanks,

link|improve this question
feedback

6 Answers

up vote 12 down vote accepted

John,

If you're on IIS7 then this will do it if it is stopped. I assume you can adjust for restarting without having to be shown.

// Gets the application pool collection from the server.
[ModuleServiceMethod(PassThrough = true)]
public ArrayList GetApplicationPoolCollection()
{
    // Use an ArrayList to transfer objects to the client.
    ArrayList arrayOfApplicationBags = new ArrayList();

    ServerManager serverManager = new ServerManager();
    ApplicationPoolCollection applicationPoolCollection = serverManager.ApplicationPools;
    foreach (ApplicationPool applicationPool in applicationPoolCollection)
    {
        PropertyBag applicationPoolBag = new PropertyBag();
        applicationPoolBag[ServerManagerDemoGlobals.ApplicationPoolArray] = applicationPool;
        arrayOfApplicationBags.Add(applicationPoolBag);
        // If the applicationPool is stopped, restart it.
        if (applicationPool.State == ObjectState.Stopped)
        {
            applicationPool.Start();
        }

    }

    // CommitChanges to persist the changes to the ApplicationHost.config.
    serverManager.CommitChanges();
    return arrayOfApplicationBags;
}

If you're on IIS6 I'm not so sure, but you could try getting the web.config and editing the modified date or something. Once an edit is made to the web.config then the application will restart.

link|improve this answer
1  
Oh, go ahead and show him how to adjust for restarting. Do you know how to do it? – DOK Oct 30 '08 at 12:20
+1 you are the man. After no less than 10 solutions (including touching web.config), this was the winnar. – ashes999 Feb 2 at 17:34
Hi, this is a very old post but I am struggling to figure one part out. Where does "ServerManagerDemoGlobals.ApplicationPoolArray" come from? i.e. what should I reference to access it? I have added references to Microsoft.Web.Management.dll and Microsoft.Web.Administration.dll Thanks – Jon yesterday
feedback

Here we go:

HttpRuntime.UnloadAppDomain();
link|improve this answer
3  
That recycles the application, but I'm not sure it recycles the entire app-pool (which can host multiple applications at once). – Marc Gravell Jul 4 '09 at 9:48
Exactly what I needed. – Inferis May 18 '10 at 12:27
@Marc - very valid, though sometimes you only care about the current application context. The conditions indicating the need to reload may assert themselves independently in each instance. – Nathan Ridley May 8 '11 at 10:04
Very helpful, I've been needing this! (I only need it for the current context) – Joisey Mike Jun 30 '11 at 22:11
feedback

The code below works on IIS6. Not tested in IIS7.

using System.DirectoryServices;

...

void Recycle(string appPool)
{
    string appPoolPath = "IIS://localhost/W3SVC/AppPools/" + appPool;

    using (DirectoryEntry appPoolEntry = new DirectoryEntry(appPoolPath))
    {
            appPoolEntry.Invoke("Recycle", null);
            appPoolEntry.Close();
    }
}

You can change "Recycle" for "Start" or "Stop" also.

link|improve this answer
According to stackoverflow.com/q/511263/#1762770, it works in IIS7 also. – Ricardo Nolde Nov 11 '10 at 12:07
1  
Note that you need to have "IIS 6 WMI Compatibility" enabled on IIS7 – Gabriel Feb 18 at 1:11
feedback

Recycle code working on IIS6:

    /// <summary>
    /// Get a list of available Application Pools
    /// </summary>
    /// <returns></returns>
    public static List<string> HentAppPools() {

        List<string> list = new List<string>();
        DirectoryEntry W3SVC = new DirectoryEntry("IIS://LocalHost/w3svc", "", "");

        foreach (DirectoryEntry Site in W3SVC.Children) {
            if (Site.Name == "AppPools") {
                foreach (DirectoryEntry child in Site.Children) {
                    list.Add(child.Name);
                }
            }
        }
        return list;
    }

    /// <summary>
    /// Recycle an application pool
    /// </summary>
    /// <param name="IIsApplicationPool"></param>
    public static void RecycleAppPool(string IIsApplicationPool) {
        ManagementScope scope = new ManagementScope(@"\\localhost\root\MicrosoftIISv2");
        scope.Connect();
        ManagementObject appPool = new ManagementObject(scope, new ManagementPath("IIsApplicationPool.Name='W3SVC/AppPools/" + IIsApplicationPool + "'"), null);

        appPool.InvokeMethod("Recycle", null, null);
    }
link|improve this answer
feedback

This out to help http://www.codeproject.com/KB/cs/Start_Stop_IIS_Website.aspx.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown