Disable .NET Framework 4.8 from Windows Update
About the .NET Framework 4.8
The .NET Framework 4.8 is an in-place upgrade to versions 4, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2 and 4.7 of the .NET Framework. In case of Exchange / Skype for Business Server 2015 if you don’t have the corresponsing CU patch or product level we will need to block the automatic installation through Windows Update of the .NET Framework 4.8 patch.
These steps describes how to perform this blocking action.
How to disable update .NET 4.8 from Windows Update in Server 2016
-
Back up the registry.
-
Start Registry Editor. To do this, click Start, type **regedit **in the Start Search box, and then press Enter.
-
Locate and click the following subkey:
HKEY_LOCAL_MACHINE\Software\Microsoft\NET Framework Setup\NDP
-
After you select this subkey, point to **New **on the **Edit **menu, and then click Key.
-
Type WU, and then press Enter.
-
Right-click WU, point to New, and then click **DWORD **Value.
-
Type BlockNetFramework48, and then press Enter.
-
Right-click BlockNetFramework48, and then click Modify.
-
In the **Value **data box, type 1, and then click OK.
-
On the **File **menu, click **Exit **to exit Registry Editor.
Disable via Powershell
New-Item -Path 'HKLM:\Software\Microsoft\NET Framework Setup\NDP\WU' -force
New-ItemProperty -Path 'HKLM:\Software\Microsoft\NET Framework Setup\NDP\WU' -Name BlockNetFramework48 -Value 1 -PropertyType 'DWord' -Force
/