在windows 8和windows 2012上.Net Framework 3.5默认是没有安装和启用的。
而目前大部分的程序一般依赖于.Net 3.5,而直接支持.Net 4.5的程序倒不是特别多,而如果要启用该功能,默认方式为在线下载方式,安装速度慢,而且一定要求有网络,对于某些局限条件不太合适。
而我们可以通过离线的方式来开启.Net 3.5 feature。
DISM /Online /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:d:\sources\sxs
- Use /All to enable all parent features of the .NET Framework 3.5.
- Use /LimitAccess to prevent DISM from contacting Windows Update.
- Use /Source to specify the location of the files needed to restore the feature.
[alert type=”warning”]注意:我们需要先把windows 8或者windows 2012的光盘挂在到D盘,因为.net 3.5功能所需的一些文件在光盘目录下的X:\Sources\SxS目录下。[/alert]