您可以使用Powershell显示可用的Windows功能:
Import-Module ServerManager
Get-WindowsFeature | out-file C:\WindowsFeatures.txt -width 300
由于数据又长又宽,因此最好将其通过管道传输到文件中并在那里进行查看。
它表明“ .NET Framework 3.5功能”可用,但“ .NET Framework 3.5(包括.NET 2.0和3.0)”已被删除。
但是,文件仍在DVD上,您可以使用:
dism /online /enable-feature /featurename:NetFX3 /source:D:\sources\sxs /all /LimitAccess
或使用PowerShell的“ Add-WindowsFeature”命令集进行安装:
Add-WindowsFeature –name NET-Framework-Core -source D:\sources\sxs
编辑:在安装了更新1的Server 2012 R2上(KB2919355),如果您使用的是原始DVD / ISO,则此方法将无效。您需要包含该更新的DVD或ISO。对于新安装,请在应用KB2919355之前安装.NET 3.5。
dsim /online /get-features /format:table
说明了什么?