Perfect solution to the problem of Windows Server 2012 or 2016 failing to install .NET Framework 3.5 without disk

Perfect solution to the problem of Windows Server 2012 or 2016 failing to install .NET Framework 3.5 without disk

Problem Description

When using Windows Server 2012 R2 or Windows Server 2016, an error message is displayed when installing .NET Framework 3.5.1. The error message is as shown in the figure below.

Cause Analysis

The installation source files could not be found.

Solution

You can use the following PowerShell script to install it.

Find PowerShell from the Start menu, right-click it and select Run as administrator.

Enter the following script and press Enter to execute it.

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

Notice:

1. Windows Server 2012 and Windows Server 2016 have high memory usage. Installing other applications will increase memory consumption, which may cause insufficient memory and installation failure. Therefore, it is recommended to increase physical memory. If it is an IO optimization instance, you can enable system virtual memory as appropriate.

2. If the installation reports an error message: 0x800f081f , please check whether the public network is normal. If it is normal, the update failure may be caused by an unstable link to the Microsoft update server. It is recommended to change the time period and try again.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Solution to Windows Server 2012 R2 Failure to Install .NET Framework 3.5
  • Solution for Windows Server 2012 R2 or 2016 to fail to install .NET Framework 3.5.1
  • Cannot install .Net 3.5.1 on Windows Server 2012 R2 or 2016
  • Windows Server 2012 R2 Standard ASP.NET Core Environment Graphics Tutorial
  • About installing .NET Framework 3.5 on Windows Server 2012

<<:  Detailed explanation of making shooting games with CocosCreator

>>:  How to write CSS elegantly with react

Recommend

Semantics: Is Html/Xhtml really standards-compliant?

<br />Original text: http://jorux.com/archiv...

How to display the border when td is empty

Previously, I summarized how to use CSS to achieve...

JavaScript manual implementation of instanceof method

1. Usage of instanceof instanceof operator is use...

Several ways to encapsulate axios in Vue

Table of contents Basic Edition Step 1: Configure...

An article to help you thoroughly understand position calculation in js

Table of contents introduction scroll Element.scr...

MySQL 8.0.19 installation and configuration method graphic tutorial

This article records the installation and configu...

js implements mouse switching pictures (without timer)

This article example shares the specific code of ...

Vue gets token to implement token login sample code

The idea of ​​using token for login verification ...

Design a simple HTML login interface using CSS style

login.html part: <!DOCTYPE html> <html l...

WeChat Mini Programs Achieve Seamless Scrolling

This article example shares the specific code for...

How to use Linux paste command

01. Command Overview The paste command will merge...

Detailed explanation of custom events of Vue components

Table of contents Summarize <template> <...