-
Notifications
You must be signed in to change notification settings - Fork 6.1k
.NET MU docs #43429
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
.NET MU docs #43429
Changes from 7 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
a88a826
.NET MU docs
joeloff 9c78f61
Make URL relative
joeloff c99ec6a
Refactor the docs
joeloff e7dd8f4
Update docs/core/install/windows.md
joeloff d0ea3f1
Fix trailing spaces
joeloff e0eb0bd
Merge branch 'fdd' of https://github.com/joeloff/docs into fdd
joeloff a5325fd
Fix registry key typo
joeloff 448a5c7
Update docs/core/install/windows.md
joeloff 1354c0b
Update docs/core/install/windows.md
joeloff 4ddf3a0
Update docs/core/install/windows.md
joeloff ab22dde
Update docs/core/install/windows.md
joeloff 86b0608
Update docs/core/install/includes/microsoft-update.md
joeloff 52a3b6c
Update docs/core/install/includes/microsoft-update.md
joeloff a84e7b2
Update docs/core/install/includes/microsoft-update.md
joeloff 7545189
Update docs/core/install/includes/microsoft-update.md
joeloff c124386
Update docs/core/install/includes/microsoft-update.md
joeloff f9c61f7
PR feedback, code-fence registry values
joeloff 9af2aaf
Update docs/core/install/windows.md
joeloff 18b8cc4
Update docs/core/install/includes/microsoft-update.md
joeloff 96f96f8
Update docs/core/install/includes/microsoft-update.md
joeloff 7363c81
Update docs/core/install/includes/microsoft-update.md
joeloff File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| --- | ||
| author: joeloff | ||
| ms.author: joeloff | ||
| ms.date: 11/12/2024 | ||
| ms.topic: include | ||
| --- | ||
|
|
||
| The .NET installer executables are independent products that can be serviced using Microsoft Update (MU) on Windows. This is different from Windows Update (WU) that is used to service operating system components like .NET Framework. | ||
|
|
||
| Both security and non-security fixes for supported versions of .NET are provided through MU using multiple distribution channels. Automatic Updates (AU) is relevant to end-users and consumers while Window Server Update Services (WSUS) and Windows Update Catalog are relevant to IT administrators. | ||
joeloff marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| The .NET installer executables support side-by-side (SxS) installations across major/minor releases for different architectures and components (runtime, SDK, etc.). For example, users can install both the 6.0.15 (x64) and 6.0.17 (x86) runtime. When MU triggers, it will offer the latest installer for both installations. | ||
joeloff marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| #### Blocking Updates | ||
joeloff marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| While most users prefer to be kept up to date, it is possible to block .NET updates using the registry keys in the table below. | ||
joeloff marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| | .NET Version | Registry Key | Name | Type | Value | | ||
joeloff marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| | -------------- | :--------- | :---------- | :---------- | :---------- | | ||
| | All | HKLM\SOFTWARE\Microsoft\\.NET | BlockMU | REG_DWORD | 0x00000001 | | ||
| | .NET 9 | HKLM\SOFTWARE\Microsoft\\.NET\9.0 | BlockMU | REG_DWORD | 0x00000001 | | ||
| | .NET 8 | HKLM\SOFTWARE\Microsoft\\.NET\8.0 | BlockMU | REG_DWORD | 0x00000001 | | ||
| | .NET 7 | HKLM\SOFTWARE\Microsoft\\.NET\7.0 | BlockMU | REG_DWORD | 0x00000001 | | ||
| | .NET 6 | HKLM\SOFTWARE\Microsoft\\.NET\6.0 | BlockMU | REG_DWORD | 0x00000001 | | ||
| | .NET 5 | HKLM\SOFTWARE\Microsoft\\.NET\5.0 | BlockMU | REG_DWORD | 0x00000001 | | ||
| | .NET Core 3.1 | HKLM\SOFTWARE\Microsoft\\.NET\3.1 | BlockMU | REG_DWORD | 0x00000001 | | ||
| | .NET Core 2.1 | HKLM\SOFTWARE\Microsoft\\.NET\2.1 | BlockMU | REG_DWORD | 0x00000001 | | ||
|
|
||
| #### Automatic Updates for Server OS | ||
joeloff marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| Updates for server operating systems are supported by WSUS and Microsoft Update Catalog, but not AU. Server operating systems can opt in to receive updates through AU using the following registry keys. | ||
|
|
||
| | .NET Version | Registry Key | Name | Type | Value | | ||
joeloff marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| | -------------- | :--------- | :---------- | :---------- | :---------- | | ||
| | All | HKLM\SOFTWARE\Microsoft\\.NET | AllowAUOnServerOS | REG_DWORD | 0x00000001 | | ||
| | .NET 9 | HKLM\SOFTWARE\Microsoft\\.NET\9.0 | AllowAUOnServerOS | REG_DWORD | 0x00000001 | | ||
| | .NET 8 | HKLM\SOFTWARE\Microsoft\\.NET\8.0 | AllowAUOnServerOS | REG_DWORD | 0x00000001 | | ||
| | .NET 7 | HKLM\SOFTWARE\Microsoft\\.NET\7.0 | AllowAUOnServerOS | REG_DWORD | 0x00000001 | | ||
| | .NET 6 | HKLM\SOFTWARE\Microsoft\\.NET\6.0 | AllowAUOnServerOS | REG_DWORD | 0x00000001 | | ||
| | .NET 5 | HKLM\SOFTWARE\Microsoft\\.NET\5.0 | AllowAUOnServerOS | REG_DWORD | 0x00000001 | | ||
| | .NET Core 3.1 | HKLM\SOFTWARE\Microsoft\\.NET\3.1 | AllowAUOnServerOS | REG_DWORD | 0x00000001 | | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.