vote up 1 vote down star

How do you check the windows version in Win32 at runtime?

flag

76% accept rate

1 Answer

vote up 5 vote down check

Use the GetVersionEx() or VerifyVersionInfo() functions.

link|flag
And when using GetVersion[Ex], remember to check version numbers with the future in mind. For example, to check for XP and higher: major > 5 OR (major==5 and minor >= 1) – Anders Feb 16 at 3:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.