为什么Windows Server 2012 R2或2016系统无法成功安装.NET Framework 3.5.1?

2026-03-31 08:101阅读0评论SEO资源
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计266个文字,预计阅读时间需要2分钟。

为什么Windows Server 2012 R2或2016系统无法成功安装.NET Framework 3.5.1?

问题描述:在Windows Server 2012 R2或Windows Server 2016系统上安装.NET 3.5.1时遇到报错,报错内容如下:原因分析:找不到安装源文件。解决方案:可以使用以下PowerShell脚本进行安装:powershellInstall-WindowsFeature Net-Framework-Core

问题描述

为什么Windows Server 2012 R2或2016系统无法成功安装.NET Framework 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

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持易盾网络。

本文共计266个文字,预计阅读时间需要2分钟。

为什么Windows Server 2012 R2或2016系统无法成功安装.NET Framework 3.5.1?

问题描述:在Windows Server 2012 R2或Windows Server 2016系统上安装.NET 3.5.1时遇到报错,报错内容如下:原因分析:找不到安装源文件。解决方案:可以使用以下PowerShell脚本进行安装:powershellInstall-WindowsFeature Net-Framework-Core

问题描述

为什么Windows Server 2012 R2或2016系统无法成功安装.NET Framework 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

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持易盾网络。