首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 系统运维 >

装配 .NET 3.5

2013-09-10 
安装 .NET 3.5安装 .NET 3.5不知道微软是出于什么目的,安装个 .NET 3.5,搞得异常复杂。Dism /online /get-f

安装 .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.

热点排行