Reputation: 1145
How do I get programatically current Windows 10 UAP version?
I did not find any suitable class or method.
GetVersionEx does not seem to be supported.
Upvotes: 0
Views: 549
Reputation: 12019
For things like metrics and analytics, you can use the new AnalyticsInfo
class. The version number you get is a string-ized representation of the four-part version number (major.minor.revision.build).
Upvotes: 1