sikuli-driver team mailing list archive
-
sikuli-driver team
-
Mailing list archive
-
Message #57707
[Bug 1946925] Re: [2.0.5] Win11: Env.getOSVersion() gets incorrect version (10.0) --- Java/Windows problem (fixed with Java18??)
** Description changed:
tracked on GitHub: https://github.com/RaiMan/SikuliX1/issues/479
----------------------------------------------------------------
looks like there is an open bug for windows 11
that is expected to be fixed in java 18
https://bugs.openjdk.java.net/browse/JDK-8274840
IMHO this is not really a Java bug, but a quirk in Windows 11
systeminfo shows this (language German):
Betriebssystemname: Microsoft Windows 11 Pro
Betriebssystemversion: 10.0.22000 Nicht zutreffend Build 22000
So the version is actually shown as 10.0 which is reported by Java
----------------------------------------------------------------------
--- workaround ---
(based on Chetan's idea from comment #7)
windowsVersion = run("systeminfo").split("\n")[2].split(":")[1].strip()
print windowsVersion
will show on Win11: Microsoft Windows 11 Pro
- (only tested on Win11 - hope it works on Win10 too)
+ (tested on Win11 and on Win10)
--------------------------------------------------------------
Env.getOSVersion() gets incorrect version for Windows 11
we are expecting version to be returned as 11 but get 10.0
OS: Win 11
Java : 14
--
You received this bug notification because you are a member of Sikuli
Drivers, which is subscribed to SikuliX.
https://bugs.launchpad.net/bugs/1946925
Title:
[2.0.5] Win11: Env.getOSVersion() gets incorrect version (10.0) ---
Java/Windows problem (fixed with Java18??)
Status in SikuliX:
Confirmed
Bug description:
tracked on GitHub: https://github.com/RaiMan/SikuliX1/issues/479
----------------------------------------------------------------
looks like there is an open bug for windows 11
that is expected to be fixed in java 18
https://bugs.openjdk.java.net/browse/JDK-8274840
IMHO this is not really a Java bug, but a quirk in Windows 11
systeminfo shows this (language German):
Betriebssystemname: Microsoft Windows 11 Pro
Betriebssystemversion: 10.0.22000 Nicht zutreffend Build 22000
So the version is actually shown as 10.0 which is reported by Java
----------------------------------------------------------------------
--- workaround ---
(based on Chetan's idea from comment #7)
windowsVersion = run("systeminfo").split("\n")[2].split(":")[1].strip()
print windowsVersion
will show on Win11: Microsoft Windows 11 Pro
(tested on Win11 and on Win10)
--------------------------------------------------------------
Env.getOSVersion() gets incorrect version for Windows 11
we are expecting version to be returned as 11 but get 10.0
OS: Win 11
Java : 14
To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1946925/+subscriptions
References