Windows Server 2012 R2无法安装.Net 3.5.1 Windows Server 2012 R2 或 2016无法安装.Net 3.5.1
whfsk 人气:0想了解Windows Server 2012 R2 或 2016无法安装.Net 3.5.1的相关内容吗,whfsk在本文为您仔细讲解Windows Server 2012 R2无法安装.Net 3.5.1的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Windows,Server,2012,R2,Windows,Server,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
加载全部内容