Windows Server 2012、2016、2019安装iis时失败,是无法安装.NET Framework3.5的问题,下面介绍一下解决方法。
使用如下PowerShell脚本进行安装。
从 开始 菜单中找到 PowerShell,右键单击选择 以管理员身份运行。
输入如下脚本后,按回车键执行。
从 开始 菜单中找到 PowerShell,右键单击选择 以管理员身份运行。
输入如下脚本后,按回车键执行。
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU' -Name UseWUServer -Value 0 Restart-Service -Name wuauserv Install-WindowsFeature Net-Framework-Core Set-ItemProperty -Path 'HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU' -Name UseWUServer -Value 1 Restart-Service -Name wuauserv
其实还有种方法,就是更新系统到最新再安装就可以了。