读书人

装配 .NET 3.5

发布时间: 2013-09-10 13:42:18 作者: rapoo

安装 .NET 3.5
安装 .NET 3.5

不知道微软是出于什么目的,安装个 .NET 3.5,搞得异常复杂。

Dism /online /get-featureinfo /featurename:NetFx3

Dism /online /enable-feature /featurename:NetFx3 /All

Dism /online /enable-feature /featurename:NetFx3 /All /LimitAccess /Source:D:\sources\sxs


在 Windows 2012 上

Get-WindowsFeature name NET-Framework-Core

Install-WindowsFeature name NET-Framework-Core

Install-WindowsFeature name NET-Framework-Core source D:\sources\sxs

在 Windows 8 上

Get-WindowsOptionalFeature Online FeatureName NetFx3

Enable-WindowsOptionalFeature Online FeatureName NetFx3 All

Enable-WindowsOptionalFeature Online FeatureName NetFx3 All -LimitAccess -Source D:\sources\sxs

说明:
/All to enable all parent features of the specified feature

/LimitAccess to prevent DISM from contacting WU/WSUS

/Source to specify the location of the files needed to restore the feature.

读书人网 >系统运维

热点推荐