Ermöglichen Sie IIS-Rollen und -Features programmgesteuert

Ich versuche, IIS-Funktionen über die C # -Konsolenanwendung zu aktivieren. Es funktioniert gut in Windows 7 und Windows 8.1-Maschinen. aber wenn ich den gleichen Code auf Windows Server 2008 R2 und Windows Server 2012 R2 ausführen, funktioniert es nicht. Was fehlt mir in diesem Code?

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Management;
using System.Text.RegularExpressions;

namespace EnableIISComponents
{
    class Program
    {
        static void Main(string[] args)
        {
            try
            {
                SetupIIS();
                Console.WriteLine("Done. Press any key to close.");
            }
            catch (Exception ex)
            {
                Console.WriteLine("Exception occurred:" + ex.Message);
            }
            Console.ReadLine();
        }
    static string SetupIIS()
    {
        // In command prompt run this command to see all the features names which are equivalent to UI features.
        // c:\>dism /online /get-features /format:table 
        var featureNames = new List<string> 
                {
                    "IIS-ApplicationDevelopment",                        
                    "IIS-ISAPIExtensions",
                    "IIS-ISAPIFilter",
                    "IIS-CommonHttpFeatures",
                    "IIS-DefaultDocument",
                    "IIS-HttpErrors",
                    "IIS-StaticContent",
                    "IIS-HealthAndDiagnostics",
                    "IIS-HttpLogging",
                    "IIS-HttpTracing",
                    "IIS-WebServer",
                    "IIS-WebServerRole",
                    "IIS-ManagementConsole",
                };

        Console.WriteLine("Checking the Operating System...\n");

        ManagementObjectSearcher obj = new ManagementObjectSearcher("select * from Win32_OperatingSystem");
        try
        {
            foreach (ManagementObject wmi in obj.Get())
            {
                string Name = wmi.GetPropertyValue("Caption").ToString();

                // Remove all non-alphanumeric characters so that only letters, numbers, and spaces are left.
                // Imp. for 32 bit window server 2008
                Name = Regex.Replace(Name.ToString(), "[^A-Za-z0-9 ]", "");

                if (Name.Contains("Server 2012 R2") || Name.Contains("Windows 81"))
                {
                    featureNames.Add("IIS-ASPNET45");
                    featureNames.Add("IIS-NetFxExtensibility45");
                }
                else if (Name.Contains("Server 2008 R2") || Name.Contains("Windows 7"))
                {
                    featureNames.Add("IIS-ASPNET");
                    featureNames.Add("IIS-NetFxExtensibility");
                }
                else
                {
                    featureNames.Clear();
                }

                string Version = (string)wmi["Version"];
                string Architecture = (string)wmi["OSArchitecture"];

                Console.WriteLine("Operating System details:");
                Console.WriteLine("OS Name: " + Name);
                Console.WriteLine("Version: " + Version);
                Console.WriteLine("Architecture: " + Architecture + "\n");
            }
        }
        catch (Exception ex)
        {
            Console.WriteLine("Exception occurred:" + ex.Message);
        }

        return Run(
            "dism",
            string.Format(
                "/NoRestart /Online /Enable-Feature {0}",
                string.Join(
                    " ",
                    featureNames.Select(name => string.Format("/FeatureName:{0}", name)))));
    }

    static string Run(string fileName, string arguments)
    {
        Console.WriteLine("Enabling IIS features...");
        Console.WriteLine(arguments);

        using (var process = Process.Start(new ProcessStartInfo
        {
            FileName = fileName,
            Arguments = arguments,
            CreateNoWindow = true,
            WindowStyle = ProcessWindowStyle.Hidden,
            RedirectStandardOutput = true,
            UseShellExecute = false,
        }))
        {
            process.WaitForExit();
            return process.StandardOutput.ReadToEnd();
        }
    }

}
}

Anstatt dieses Programm auf einem Server auszuführen Wenn ich den Befehl dism mit denselben Funktionsnamen über die Eingabeaufforderung ausführe, werden die IIS-Funktionen aktiviert. Warum funktioniert es nicht mit dem Programm?

Ich führe mein Programm als Administrator aus, indem ich mit der rechten Maustaste auf "Als Administrator ausführen" klicke.

Ich habe dieses Beispiel mit Hilfe dieses Links erstellt.Bessere Möglichkeit, IIS7 programmgesteuert zu installieren

Antworten auf die Frage(2)

Ihre Antwort auf die Frage