Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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. Or, check Control Panel.
ms.date: 07/10/2025
ms.date: 20/10/2025
dev_langs:
- "csharp"
- "vb"
Expand Down Expand Up @@ -86,7 +86,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, October 2020 Update, May 2021 Update, November 2021 Update, and 2022 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 | On Windows 11 2022 Update and Windows 11 2023 Update: **533320**<br/>All other Windows operating systems: **533325** |
| .NET Framework 4.8.1 | On Windows 11 2025 Update: **533509**<br/>On Windows 11 2022 Update and Windows 11 2023 Update: **533320**<br/>All other Windows operating systems: **533325** |

#### Minimum version

Expand Down
3 changes: 2 additions & 1 deletion docs/framework/install/versions-and-dependencies.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: .NET Framework & Windows OS versions
description: Learn about key features in each version of .NET Framework, including underlying CLR versions and versions installed by the Windows operating system.
ms.date: 07/10/2025
ms.date: 20/10/2025
helpviewer_keywords:
- "versions, .NET Framework"
---
Expand Down Expand Up @@ -63,6 +63,7 @@ Jump to:

To determine the installed .NET version, use the following `Release` DWORD:

- 533509 (Windows 11 September 2025 Release)
- 533320 (Windows 11 September 2022 Release and Windows 11 October 2023 Release)
- 533325 (all other OS versions)

Expand Down
Loading