无法安装 windows 功能 IIS

Could not install windows feature IIS

我尝试通过 Control Panel\Programs 和 Features\ Turn Windows features 在我的 windows 10 系统上重新安装 iis 或关闭它,但是在卸载它之后安装 iis 时出现问题再次.

以下是我目前遇到的所有错误的屏幕截图:

在文件夹 Windows/System32/inetsrv/config 中,我重新创建了名为 ApplicationHost.config

的文件

配置如下:

<?xml version="1.0" encoding="UTF-8" ?>
<configuration>
    <system.applicationHost>
        <applicationPools>
            <add name="DefaultAppPool" />
            <applicationPoolDefaults>
                <processModel identityType="NetworkService" />
            </applicationPoolDefaults>
        </applicationPools>
        <customMetadata />
    <listenerAdapters>
        <add name="http" />
    </listenerAdapters>
    <log>
        <centralBinaryLogFile enabled="true" directory="%SystemDrive%\inetpub\logs\LogFiles" />
        <centralW3CLogFile enabled="true" directory="%SystemDrive%\inetpub\logs\LogFiles" />
    </log>
    <sites>
        <site name="Default Web Site" id="1">
            <application path="/">
                <virtualDirectory path="/" physicalPath="%SystemDrive%\inetpub\wwwroot" />
            </application>
            <bindings>
                <binding protocol="http" bindingInformation="*:80:" />
            </bindings>
        </site>
        <siteDefaults>
            <logFile logFormat="W3C" directory="%SystemDrive%\inetpub\logs\LogFiles" />
            <traceFailedRequestsLogging directory="%SystemDrive%\inetpub\logs\FailedReqLogFiles" />
        </siteDefaults>
        <applicationDefaults applicationPool="DefaultAppPool" />
        <virtualDirectoryDefaults allowSubDirConfig="true" />
    </sites>
    <webLimits />
</system.applicationHost>
</configuration>

有没有人在我之前遇到过类似的事情并且能够再次 运行 IIS 而无需从头开始重新安装整个系统?

如果需要任何信息,请不要急于在评论部分提问。

提前致谢:)

多亏 @LexLi 和他提供的链接,我才能够找出导致问题的原因。

Main Link

Second one

And last which point the way to uninstall Windows Process Activation Service in Windows 10 pro not server one

只是为了确保我卸载了: Internet 信息服务可托管 Web 核心

我希望这个回答对以后的人有所帮助。

再次感谢@LexLi小助手。 干杯!