vote up 0 vote down star

System.Environment.OSVersion does not appear to indicate which Edition of Windows 2003 is installed (Standard, Enterprise, DataCenter).

Is there any way to access this information using managed code only?

I know I can use P/Invoke to call GetVersionEx and examine OSVERSIONINFOEX.wSuiteMask to get this info, but I'm looking for a simpler solution.

Update

Using WMI looks like the way to go, though the OSProductSuite property of Win32_OperatingSystem looks more reliable than the Name property. Here's sample code:

ManagementScope scope = new ManagementScope();
ObjectQuery query = new ObjectQuery("SELECT name, csdversion, description, OperatingSystemSKU, OSProductSuite FROM Win32_OperatingSystem");

using (ManagementObjectSearcher searcher = new ManagementObjectSearcher(scope, query))
{
    using (ManagementObjectCollection resultCollection = searcher.Get())
    {
        foreach (ManagementObject result in resultCollection)
        {
            foreach (PropertyData propertyData in result.Properties)
            {
                Debug.WriteLine(
                    propertyData.Name + ": " +
                    ((propertyData.Value == null) ? "" : propertyData.Value.ToString())
                    );
            }
        }
    }
}
flag

73% accept rate
The pinvoke way seems pretty simple. – leppie Oct 28 at 11:38

2 Answers

vote up 3 vote down check

You could execute the following WMI query:

SELECT name FROM Win32_OperatingSystem

It returns something like this:

Microsoft Windows Server 2003 Standard Edition|C:\WINDOWS|\Device\Harddisk0\Partition1

This article explains how to perform WMI queries using .NET.

link|flag
Will try this, thanks – Joe Oct 28 at 16:05
WMI gets my vote too :) – Cocowalla Oct 28 at 19:36
vote up 0 vote down

I'm not aware of any way to do this using only managed code.

There is some code here using GetVersionEx that should encapsulate things for you nicely though.

link|flag

Your Answer

Get an OpenID
or

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