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

相关文章:

  • 2021-05-02
  • 2021-06-25
  • 2021-12-31
  • 2022-12-23
  • 2021-06-20
  • 2022-01-10
猜你喜欢
  • 2021-07-13
  • 2021-07-18
  • 2021-12-02
  • 2022-12-23
  • 2021-10-20
相关资源
相似解决方案