解决Win8无法升级.NET Framework 3.5.1 提示错误0x800F0906

搞了好久,发现了这篇文,很清晰,就引用了过来。http://www.xdowns.com/article/239/Article_3065.html

起因是windows8.1装oracle10g提示需要.net framework3.5,可是安装时会一直跳转到在线下载窗口,只需要这样就好了。

1. 打开 win8 安装盘,提取 sourcessxs 文件夹到 d:sourcessxs (或别的盘也行,举个例子);

2. 打开 c:windowssystem32 文件夹,找到 cmd.exe,右击,选择”Run as administrator”;

3. 在命令行执行以下命令:

dism.exe /online /enable-feature /featurename:NetFX3 /Source:d:sourcessxs (就是第一步提取出来的)

大概一两分钟就执行完了,执行结果如下:

Deployment Image Servicing and Management tool

Version: 6.2.8250.0

Image Version: 6.2.8250.0

Enabling feature(s)

[==========================100.0%==========================]

The operation completed successfully.

原文地址:https://www.cnblogs.com/wangzhi/p/3873843.html