windows 11

Just upgraded my system to windows 11. It was a very smooth, no glitches and everything seems to be working. However out of interest I did a ver /r to see what would result.

1632402935644.png


system info

1632403075690.png


So not quite right.
 
Jan 12, 2014
524
11
Switzerland, SO
It seems it interprets the "Version" string only and not the "OS Name string" ... and the "Version" string "10.0.22000" still means Win 10 ...

What means a "ver" in "CMD"?
 
May 20, 2008
12,175
133
Syracuse, NY, USA
And what do you get from this ...

Code:
v:\> echo %@wmi[.,"Select Version from Win32_OperatingSystem"]
10.0.19043

... and this?

Code:
v:\> echo %@word["|",0,%@wmi[.,"Select Name from Win32_OperatingSystem"]]
Microsoft Windows 10 Pro for Workstations
 
May 20, 2008
12,175
133
Syracuse, NY, USA
I guess it's not very important what it calls itself. Build 22000 says exactly what you have. For more indications, you might look at the properties dialog (details tab) for (\windows\system32) ntoskrnl.exe and kernel32.dll. I wouldn't be surprised if, even after the official release of 21H2, some things will say Windows 10.
 
Jan 12, 2014
524
11
Switzerland, SO
Well, System Info does report it correctly - BUT: uses the same incorrect value/string.
Version should be 11.0.22000 not 10...... and exactly THIS seems the problem.
So all programs which take this value/string (from registry or whatever), will report it as Windows 10.
So, 10.0 is definitely the wrong version string yet! After MS changed it, TCC will report the correct version too (highly probably).

PS: On my Windows 10, I have this at least as following in the registry:
Code:
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Update\TargetingInfo\Installed\Client.OS.rs2.amd64]
"Branch"="vb_release_svc_prod1"
"PrimaryOSProduct"="1"
"Repairable"="1"
"Version"="10.0.19043.1237"
 
Last edited:

Similar threads