Windows Server 2012 R2 或 2016无法安装.Net 3.5.1

小鱼们欢快的闹腾起来,有的甩动着尾巴,有的吐着泡泡,有的扭动着身体,互相追玩,好不热闹。春天来了!你看,融化的冰水把小溪弄醒了。 "丁粳、丁粳 ",它就像大自然的神奇歌手,唱着清脆悦耳的歌,向前奔流……

问题描述

使用 Windows Server 2012 R2 或 Windows Server 2016系统,发现在安装 .net 3.5.1 时报错,报错内容如下:

原因分析

找不到安装源文件。

解决办法

可以通过如下 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

到此这篇关于Windows Server 2012 R2 或 2016无法安装.Net 3.5.1就介绍到这了。拥有知识改变命运,拥有理想改变态度。更多相关Windows Server 2012 R2 或 2016无法安装.Net 3.5.1内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!

标签: Server Windows