繁体   English   中英

在 C# 中识别操作系统详细信息

[英]Identify the Operating System details in C#

如何在 WPF 应用程序中使用 C# 代码获取操作系统详细信息?

Environment类提供可用于获取系统信息的属性

您可以从系统获取操作系统信息。 Environment.OSVersion 这里

看看System.Environment它有属性OSVersion

由于我只需要关心非服务器版本,我这样做:

enum OS { _2000, XP, Vista, _7, _8 }

public static OS GetOS()
{
    var version = Environment.OSVersion.Version;
    switch (version.Major)
    {
        case 5:
            switch (version.Minor)
            {
                case 0:
                    return OS._2000;
                case 1:
                    return OS.XP;
                case 2:
                    return OS.XP; //could also be Server 2003, Server 2003 R2
            }
            break;
        case 6:
            switch (version.Minor)
            {
                case 0:
                    return OS.Vista; //could also be Server 2008
                case 1:
                    return OS._7; //could also be Server 2008 R2
                case 2:
                    return OS._8; //could also be Server 20012, Server 2012 R2
            }
            break;
    }

    throw new Exception("Strange OS");
}

如果您确实还需要考虑服务器版本,那么您的选择是:

  1. WMI,您将不得不进行一些手动解析。 不确定用户权限是否会伤害非管理员用户。

  2. GetVersionEx本答案所述

  3. 检查ProductName

    HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\
  4. IsOS函数,如本答案所述 我最喜欢这个..

在这里提供了更完整的答案。

使用注册表对于任何应用程序都是可能的。 在 C# 中,我为此创建了一个实用程序类。 请注意,Microsoft 已更改 Windows 10+ 的密钥(此类旨在处理)。 这门课应该给你你需要的信息,我认为:

namespace Inspection
{
    /// <summary>
    /// Static class that adds convenient methods for getting information on the running computers basic hardware and os setup.
    /// </summary>
    public static class ComputerInfo
    {
        /// <summary>
        ///     Returns the Windows major version number for this computer.
        /// </summary>
        public static uint WinMajorVersion
        {
            get
            {
                dynamic major;
                // The 'CurrentMajorVersionNumber' string value in the CurrentVersion key is new for Windows 10, 
                // and will most likely (hopefully) be there for some time before MS decides to change this - again...
                if (TryGeRegistryKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion", "CurrentMajorVersionNumber", out major))
                {
                    return (uint) major;
                }

                // When the 'CurrentMajorVersionNumber' value is not present we fallback to reading the previous key used for this: 'CurrentVersion'
                dynamic version;
                if (!TryGeRegistryKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion", "CurrentVersion", out version))
                    return 0;

                var versionParts = ((string) version).Split('.');
                if (versionParts.Length != 2) return 0;
                uint majorAsUInt;
                return uint.TryParse(versionParts[0], out majorAsUInt) ? majorAsUInt : 0;
            }
        }

        /// <summary>
        ///     Returns the Windows minor version number for this computer.
        /// </summary>
        public static uint WinMinorVersion
        {
            get
            {
                dynamic minor;
                // The 'CurrentMinorVersionNumber' string value in the CurrentVersion key is new for Windows 10, 
                // and will most likely (hopefully) be there for some time before MS decides to change this - again...
                if (TryGeRegistryKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion", "CurrentMinorVersionNumber",
                    out minor))
                {
                    return (uint) minor;
                }

                // When the 'CurrentMinorVersionNumber' value is not present we fallback to reading the previous key used for this: 'CurrentVersion'
                dynamic version;
                if (!TryGeRegistryKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion", "CurrentVersion", out version))
                    return 0;

                var versionParts = ((string) version).Split('.');
                if (versionParts.Length != 2) return 0;
                uint minorAsUInt;
                return uint.TryParse(versionParts[1], out minorAsUInt) ? minorAsUInt : 0;
            }
        }

        /// <summary>
        ///     Returns whether or not the current computer is a server or not.
        /// </summary>
        public static uint IsServer
        {
            get
            {
                dynamic installationType;
                if (TryGeRegistryKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion", "InstallationType",
                    out installationType))
                {
                    return (uint) (installationType.Equals("Client") ? 0 : 1);
                }

                return 0;
            }
        }

        private static bool TryGeRegistryKey(string path, string key, out dynamic value)
        {
            value = null;
            try
            {
                var rk = Registry.LocalMachine.OpenSubKey(path);
                if (rk == null) return false;
                value = rk.GetValue(key);
                return value != null;
            }
            catch
            {
                return false;
            }
        }
    }
}

System.Runtime.InteropServices.RuntimeInformation.OSDescription

亚历克斯·桑索的回答

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM