Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm programming a Metro Style App with C# and the Visual Studio 11 Beta. Now I want to get the OS-Version of the OS. How can I get this?

I found out how to do it in "normal" Applications. There you take the Environment-Class with the attribute OSVersion but in .NET Core there isn't this attribute

share|improve this question
2  
Why do you want the OS Version? – tomasmcguinness Apr 12 '12 at 14:12
I send it to a WebService and there I sort the Requests by OS-Version. – user1242134 Apr 12 '12 at 14:14
I cannot see anything obvious in the API documentation, so you could, perhaps, hardcode it in your Metro app version to begin with? – tomasmcguinness Apr 12 '12 at 14:19
4  
There is intentionally no way of getting the OS version. Historically applications have mis-used the OS version instead of relying on various forms of feature detection which have caused significant appcompat issues for the development team. For Windows 8 the dev team decided to avoid the issue entirely by not providing a GetVersion API. – Larry Osterman Apr 12 '12 at 14:56
@LarryOsterman - can you show an example of how to do feature detection for c#/xaml apps? will we have to use reflection? – Robert Levy Apr 12 '12 at 15:04
show 2 more comments

3 Answers

up vote 11 down vote accepted

For new applications you should check for specific features, not OS version.

As far as I can tell there is no reason to check for OS version as metro applications are only available for win 8.

share|improve this answer
I suppose it's future-proofing. Metro-style apps will most likely run on Windows 9 as well. – svick Apr 12 '12 at 14:29
@svick - What's he gonna do? Show an error message if run on future OS's? That's not future proofing. – Robert Levy Apr 12 '12 at 14:47
1  
@RobertLevy, as the OP said in a comment, send the OS version to a WebService. – svick Apr 12 '12 at 14:49
   
Metro apps are meant to run in a silo and have 0 knowledge of the underlying operating system. Also updates to WinRT may come out of band. Also, you should check out other metrics that are more important then the windows kernel version (screen size, location and so on). The next os from MS might not even be a windows for all we know. – linkerro Apr 13 '12 at 7:58

You can get the OS version number with some risk that it might not be correct by using the devices API to get the driver version number for a low-level system component like the HAL.

The accepted answer is correct in that you shouldn't tie functionality to the version number but there are valid reasons to use it such as analytics - it's useful to know when a lot of your users are already on a new version and that you should be considering an app update to take advantage of it.

http://attackpattern.com/2013/03/device-information-in-windows-8-store-apps/ has more information and sample code (disclosure, I wrote that post & code)

share|improve this answer

Based on the answers of other posters - there is no API to test for OS version, but there will be APIs to query for the version of a specific type. This means that you might not be able to tell the version of future releases of Windows with your current code, but if you keep updating your code - you could determine the OS version based on whether a specific type is available. For now you would assume to be using the current version of Windows 8.

Also, I have not tried, but it is possible that you could get it by doing interop with JavaScript and parsing "navigator.appVersion".

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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