Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

Appreciate if you post sample code?

share|improve this question

6 Answers

up vote 19 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.

share|improve this answer
2  
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 '12 at 17:34
2  
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 May 24 '12 at 21:19
@Jon I'm also having that problem. – Holger Jun 14 '12 at 11:14
@Jon The code seem to originate from here: msdn.microsoft.com/en-us/library/… – Holger Jun 14 '12 at 11:25

Here we go:

HttpRuntime.UnloadAppDomain();
share|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
That hit the spot, right there. Aahhh... – Dave Van den Eynde Sep 2 '12 at 19:06

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);
    }
share|improve this answer

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.

share|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 '12 at 1:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.