发布网友 发布时间:2022-04-25 14:50
共1个回答
热心网友 时间:2023-11-01 01:28
如果根据需要安装 .NET Framework 3.5 或者在"控制面板"中启用它失败,则会收到下列错误消息之一:
0x800f0906:“Windows 无法连接到 Internet 以下载必要的文件。 确保已连接到 Internet,然后单击“重试”以便再试。
0x800F081F:“无法完成此更改。 请重新启动您的计算机,然后重试。
由于下列原因可能显示这些消息可能:
您的计算机未连接到 Internet。 请连接,然后重试该操作。
如果无法连接到 Internet,则可以通过使用部署映像服务和管理 (DISM) 命令行工具并指定从中安装 Windows 8 的安装媒体(ISO 映像或 DVD),启用 .NET framework 3.5。
Run as administrator)." xml:space="preserve">在 Windows 8 或 Windows Server 2012 中,打开具有管理凭据的“命令提示符”窗口(即选择以管理员身份运行)。
要从位于 D:sourcessxs 的安装媒体安装 .NET framework 3.5,请使用以下命令:
DISM /Online /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:d:sourcessxs
其中:
/Online targets the operating system you're running (instead of an offline Windows image)." xml:space="preserve">/Online 面向您正在运行的操作系统(而不是脱机 Windows 图像)。
/Enable-Feature /FeatureName:NetFx3 specifies that you want to enable the .NET Framework 3.5." xml:space="preserve">/Enable-Feature /FeatureName:NetFx3 指定要启用的 .NET framework 3.5。
/All enables all parent features of the .NET Framework 3.5." xml:space="preserve">/All 启用 .NET framework 3.5 的所有父功能。
/LimitAccess prevents DISM from contacting Windows Update." xml:space="preserve">/LimitAccess 防止 DISM 与 Windows Update 连接。
/Source specifies the locetion of the files needed to restore the feature (in this example, the D:sourcessxs directory)." xml:space="preserve">/Source 指定需要还原功能的文件位置(在本示例中,D:sourcessxs directory)。
How to Enable or Disable Windows Features" xml:space="preserve">有关 DISM 参数和选项的更多信息,请参见如何启用或禁用 Windows 功能
正在使用本地源,但是,网络位置不可访问或不具有适当的内容。 从前面所述的项目符号的内容中的安装媒体安装 .NET Framework 3.5。
您的管理员已配置您的计算机使用 Windows Server Update Services (WSUS) 执行服务,而非使用 Windows Update。 请要求您的管理员启用使用 Windows Update(而非 WSUS)的策略。