1. 使用 PowerShell, 指定源文件路径然后进行安装:

    Install-WindowsFeature NET-Framework-Core –Source D:\Sources\sxs

  2. 使用命令提示符中的DISM命令,指定源文件路径然后进行安装:

    DISM /Online /Enable-Feature /FeatureName:NetFx3 /Source:d:\sources\sxs

  3. 使用包含sxs文件夹的文件共享,指定unc共享路径:

    Install-WindowsFeature NET-Framework-Core –Source \\ServerName\ShareName\sxs

04-24 19:32