0

我使用了网络角色。我只是想知道是否可以为我的项目使用启动脚本将管道模式更改为经典。

我可以使用 C# 代码来实现,但我更喜欢使用 cmd,我在这里遇到的问题是如何通过 cmd 获取 applicationPool 名称?这是我的 C# 代码:

    {
        using (ServerManager serverManager = new ServerManager())
        {
            Site site = serverManager.Sites[RoleEnvironment.CurrentRoleInstance.Id + "_Web"];

                Configuration config = serverManager.GetApplicationHostConfiguration();
                string AppPoolName = site.Applications[0].ApplicationPoolName;

                ConfigurationSection applicationPoolsSection = config.GetSection("system.applicationHost/applicationPools");

                ConfigurationElementCollection applicationPoolsCollection = applicationPoolsSection.GetCollection();

                ConfigurationElement addElement = FindElement(applicationPoolsCollection, "add", "name", AppPoolName);
                if (addElement == null) throw new InvalidOperationException("Element not found!");

                addElement["managedPipelineMode"] = @"Classic";

                serverManager.CommitChanges();



            return base.OnStart();
        }
    }

    private static ConfigurationElement FindElement(ConfigurationElementCollection collection, string elementTagName, params string[] keyValues)
    {
        foreach (ConfigurationElement element in collection)
        {
            if (String.Equals(element.ElementTagName, elementTagName, StringComparison.OrdinalIgnoreCase))
            {
                bool matches = true;

                for (int i = 0; i < keyValues.Length; i += 2)
                {
                    object o = element.GetAttributeValue(keyValues[i]);
                    string value = null;
                    if (o != null)
                    {
                        value = o.ToString();
                    }

                    if (!String.Equals(value, keyValues[i + 1], StringComparison.OrdinalIgnoreCase))
                    {
                        matches = false;
                        break;
                    }
                }
                if (matches)
                {
                    return element;
                }
            }
        }
        return null;
    }

}

那么我该怎么做呢?

4

1 回答 1

0

If the pool name is the only problem you are facing, try using appcmd for listing all available pools:

appcmd.exe list apppool /text:*

This should give you all apppools available on IIS with the app names (provided you have enough rights).

于 2013-05-06T12:07:47.767 回答