Btw, why does it say Windows 10 and not Windows 11, is it because of the upgrade path from W10?
Powershell code
$OS=@(Get-ChildItem -Path HKLM:\System\Setup\Source* | ForEach-Object {Get-ItemProperty -Path Registry::$_}; Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion')
$OS | Select-Object ProductName, ReleaseID, CurrentBuild, @{Name='InstallDate'; Expression={[timezone]::CurrentTimeZone.ToLocalTime(( [datetime]'1/1/1970').AddSeconds($_.InstallDate))}} | Sort-Object "InstallDate"