Index: trunk/src/org/openstreetmap/josm/tools/PlatformHookWindows.java
===================================================================
--- trunk/src/org/openstreetmap/josm/tools/PlatformHookWindows.java	(revision 19039)
+++ trunk/src/org/openstreetmap/josm/tools/PlatformHookWindows.java	(revision 19041)
@@ -293,4 +293,15 @@
 
     /**
+     * Returns the Windows display version from registry (example: "22H2")
+     * @return the Windows display version from registry
+     * @throws IllegalAccessException if Java language access control is enforced and the underlying method is inaccessible
+     * @throws InvocationTargetException if the underlying method throws an exception
+     * @since 19041
+     */
+    public static String getDisplayVersion() throws IllegalAccessException, InvocationTargetException {
+        return WinRegistry.readString(HKEY_LOCAL_MACHINE, CURRENT_VERSION, "DisplayVersion");
+    }
+
+    /**
      * Returns the Windows current build number from registry (example: "15063")
      * @return the Windows current build number from registry
@@ -307,7 +318,12 @@
         try {
             sb.append(getProductName());
-            String releaseId = getReleaseId();
-            if (releaseId != null) {
-                sb.append(' ').append(releaseId);
+            String displayVersion = getDisplayVersion();
+            if (displayVersion != null) {
+                sb.append(' ').append(displayVersion);
+            } else {
+                String releaseId = getReleaseId();
+                if (releaseId != null) {
+                    sb.append(' ').append(releaseId);
+                }
             }
             sb.append(" (").append(getCurrentBuild()).append(')');
