win08/12 提示.net3.5安装失败

win08/12 提示.net3.5安装失败解决方法

  • 方法一: 指定备用源(一般需要有镜像安装盘作为驱动挂载/sources/sxs)
  • 方法二:以管理员身份运行powershell(一次性全部运行一下命令)
      Set-ItemProperty -Path 'HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU' -Name UseWUServer -Value 0
      Restart-Service -Name wuauserv
      Install-WindowsFeature Net-Framework-Core
      Set-ItemProperty -Path 'HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU' -Name UseWUServer -Value 1
      Restart-Service -Name wuauserv
    

Comments