Page 1 of 1

Incorrect Windows version being reported

Posted: Thu Feb 13, 2020 1:14 am
by Somebuddy
I got a bug report from a customer. The operating system reported was
"operating system : Windows 10 Tablet PC x64 build 18363"
Turns out the user is not using a tablet version and is just using regular desktop Windows 10.
Just hoping this can be fixed as I went down a long path of trying to source a tablet to test a bug that had nothing to do with a tablet in the end.
Thanks.

Re: Incorrect Windows version being reported

Posted: Thu Feb 13, 2020 8:40 am
by madshi
I'm showing that if GetSystemMetric(SM_TABLETPC) returns true. I guess I can just as well remove it because it's not really important, and if there are "false positives" like this, it might be better to remove it. Or what do you think?

Re: Incorrect Windows version being reported

Posted: Thu Feb 13, 2020 7:03 pm
by Somebuddy
Yes, I think removing it is for the best.
Better to have it not included than reporting false positives.
Thanks.

Re: Incorrect Windows version being reported

Posted: Thu Feb 13, 2020 9:50 pm
by iconic
Unfortunately that check is and can be wrong, for instance if a Desktop or true Tablet lack a physical keyboard

Issue Example:
https://codereview.chromium.org/1879953002

Regardless, Windows 10 build 18363 is identical on both the desktop and tablet devices (tablets usually just have special drivers pre-installed and loaded)
so showing if it's a tablet or not doesn't really help the user, only the OS version and build information would be useful imho. So, +1 for getting rid of the
additional information about tablets, less confusion when wrong :D

--Iconic

Re: Incorrect Windows version being reported

Posted: Fri Feb 14, 2020 9:06 am
by madshi
Ok, thanks!