问题现象:在windows server 2012 上安装NET.framework3.5报错
解决方法:可以使用如下 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