up vote 4 down vote favorite
3
share [g+] share [fb]

How to translate MS Windows OS version numbers into product names?

For example, in .NET the following two properties could be used to work out that the product is MS Windows Vista Ultimate Edition :

Environment.OSVersion.Platform returns Win32NT

Environment.OSVersion.Version returns 6.0.6001.65536

link|improve this question

74% accept rate
feedback

4 Answers

up vote 13 down vote accepted

howto net os version

VB:

Public Function GetOSVersion() As String
    Select Case Environment.OSVersion.Platform
        Case PlatformID.Win32S
            Return "Win 3.1"
        Case PlatformID.Win32Windows
            Select Case Environment.OSVersion.Version.Minor
                Case 0
                    Return "Win95"
                Case 10
                    Return "Win98"
                Case 90
                    Return "WinME"
                Case Else
                    Return "Unknown"
            End Select
        Case PlatformID.Win32NT
            Select Case Environment.OSVersion.Version.Major
                Case 3
                    Return "NT 3.51"
                Case 4
                    Return "NT 4.0"
                Case 5
                    Select Case _
                        Environment.OSVersion.Version.Minor
                        Case 0
                            Return "Win2000"
                        Case 1
                            Return "WinXP"
                        Case 2
                            Return "Win2003"
                    End Select
                Case 6
                    Return "Vista/Win2008Server"
                Case Else
                    Return "Unknown"
            End Select
        Case PlatformID.WinCE
            Return "Win CE"
    End Select
End Function


C#

 public static string GetMachineOS()
 {
  if (Environment.OSVersion.Platform == PlatformID.Win32NT)
  {
   if (Environment.OSVersion.Version.Major<=4)
    return String.Format("Windows NT {0}", Environment.OSVersion.Version.ToString());
   if (Environment.OSVersion.Version.Major==5)
   {
    if (Environment.OSVersion.Version.Minor==0)
     return String.Format("Windows 2000 {0}", Environment.OSVersion.Version.ToString());
    else
     return String.Format("Windows XP {0}", Environment.OSVersion.Version.ToString());
   }
  }

  if (Environment.OSVersion.Platform == PlatformID.Win32Windows)
  {
   if (Environment.OSVersion.Version.Major>=4)
   {
    if (Environment.OSVersion.Version.Minor==0)
     return String.Format("Windows 95 {0}", Environment.OSVersion.Version.ToString());    
    else if (Environment.OSVersion.Version.Minor<90)
     return String.Format("Windows 98 {0}", Environment.OSVersion.Version.ToString());
    else
     return String.Format("Windows Millenim Edition {0}", Environment.OSVersion.Version.ToString());
   }
  }

  return Environment.OSVersion.ToString(); //ELSE
 }
link|improve this answer
Why not case statements for both VB and C#? Also add an extra statement for Windows 7. – Keith Feb 13 '09 at 12:21
how detect Vista, Win2008, Win7 ??? – Kiquenet Mar 3 '11 at 11:35
The version numbers (both major and minor) for XP x64 and 2003 are identical == 5.2. The same applies to Vista and 2008 == 6.0 and to 2008 R2 and Win7 == 6.1. If you need to differentiate between these systems, you can check the OSVersionInfo.OSProductType property against OSProductType.Workstation. (From codeproject.com/KB/system/osversion.aspx) – habakuk Nov 3 '11 at 16:43
feedback

You can use WMI to get the friendly product name ("Microsoft® Windows Server® 2008 Enterprise "):

using System.Management;
var name = (from x in new ManagementObjectSearcher("SELECT * FROM Win32_OperatingSystem").Get().OfType<ManagementObject>()
                      select x.GetPropertyValue("Caption")).First();
return name != null ? name.ToString() : "Unknown";
link|improve this answer
feedback

There's a C++ example at msdn http://msdn.microsoft.com/en-us/library/ms724429(VS.85).aspx, along with a note someone's added about how to wrap it up for use in [VB].net. It looks like the "missing" bit you need is the Win32 function GetProductInfo (PInvoke.net reference for this).

Between this and the answer from Avram, you should be able to assemble the full version string.

link|improve this answer
@Rob : i based my answer on the ".net" tag that added to question – Avram Feb 13 '09 at 13:11
Avram - Yeup, you did - but, P/Invoke is part of .net, and is (as far as I can tell!) the only way to add to your answer to get the "edition" part of it, i.e. "Ultimate Edition" or "Home Premium", etc.. – Rob Feb 13 '09 at 13:46
fails for me in Win2003: Unable to find an entry point named 'GetProductInfo' in DLL 'kernel32.dll'. – Kiquenet Feb 16 '11 at 11:28
1  
@alhambraeidos, please take the time to review the msdn documentation my answer references. Of course it won't work, as the API was introduced in Vista/Server2008 - which was a "minimum OS requirement" that was suggested in the OPs question. – Rob Feb 16 '11 at 12:39
feedback

If you just want a GUI friendly informational message I used

My.Computer.Info.OSFullName & " (" + My.Computer.Info.OSVersion + ")"

Seems to be future proof for future versions of Windows

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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