Windows 8 安装 .Net Framework 3.5 失败的解决方法

解决方法有两种,都需要系统镜像或者光盘,一种是通过 Powershell 的 Add-WindowsFeature 命令,另外一种是通过 Dism(Deployment Image Servicing and Management)。

首先,先挂载系统镜像或者插入光盘,假设盘符是 D:

方法一:

  1. 运行 PowerShell
  2. 输入 Add-WindowsFeature Net-Framework-Core -Source D:\sources\sxs

方法二:

  1. 运行命令行
  2. 输入 Dism /online /enable-feature /featurename:NetFx3 /All /Source:D:\sources\sxs /LimitAccess

参考来源:https://support.microsoft.com/en-us/kb/2734782 Method 4 and 3

posted @ 2015-07-20 18:15  DiryBoy  阅读(288)  评论(0编辑  收藏  举报