I'm trying to find out which edition of windows is installed on some users computers. I tried:
wmic os get Caption /value
and
systeminfo | find "OS Name
and
winver
The problem is that for different os languages I get the edition name also in that language, and I can't support all languages. Does anybody know some useful way to find which edition the user has without being dependent on the language?
(the commands I used so far are meant for cmd, but I'm writing my program in python, so a solution for python is also ok)
thank you!!