Skip to content

Update reg key value for Windows 11 update #31491

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 1 commit into from
Sep 30, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Determine which .NET Framework versions are installed
description: Use code, regedit.exe, or PowerShell to detect which versions of .NET Framework are installed on a machine by querying the Windows registry.
ms.date: 12/04/2020
ms.date: 09/29/2022
dev_langs:
- "csharp"
- "vb"
Expand Down Expand Up @@ -73,7 +73,7 @@ The **Release** REG_DWORD value in the registry represents the version of .NET F
| .NET Framework 4.7.1 | On Windows 10 Fall Creators Update and Windows Server, version 1709: 461308<br/>On all other Windows operating systems (including other Windows 10 operating systems): 461310 |
| .NET Framework 4.7.2 | On Windows 10 April 2018 Update and Windows Server, version 1803: 461808<br/>On all Windows operating systems other than Windows 10 April 2018 Update and Windows Server, version 1803: 461814 |
| .NET Framework 4.8 | On Windows 10 May 2019 Update and Windows 10 November 2019 Update: 528040<br/>On Windows 10 May 2020 Update and Windows 10 October 2020 Update and Windows 10 May 2021 Update: 528372<br/>On Windows 11 and Windows Server 2022: 528449<br/>On all other Windows operating systems (including other Windows 10 operating systems): 528049 |
| .NET Framework 4.8.1 | All Windows operating systems: 533325 |
| .NET Framework 4.8.1 | On Windows 11 2022 Update: 533320<br/>All other Windows operating systems: 533325 |

### Minimum version

Expand All @@ -91,7 +91,7 @@ To determine whether a *minimum* version of .NET Framework is present, check for
| .NET Framework 4.7.1 | 461308 |
| .NET Framework 4.7.2 | 461808 |
| .NET Framework 4.8 | 528040 |
| .NET Framework 4.8.1 | 533325 |
| .NET Framework 4.8.1 | 533320 |

### Use Registry Editor

Expand Down