使用Windows 10企业版的GetVersionEx提取信息

时间:2017-10-12 11:53:09

标签: c#

在我正在使用的程序中,这段代码告诉我操作系统是否是嵌入式

public static bool IsEmbedded
    {
        get 
        {
           Scada.Windows.API.OSVERSIONINFO osvi2 = new Scada.Windows.API.OSVERSIONINFO();
           osvi2.dwOSVersionInfoSize = (uint)Marshal.SizeOf(typeof(Scada.Windows.API.OSVERSIONINFO));
           Scada.Windows.API.GetVersionEx(ref osvi2);
           return ((osvi2.wSuiteMask & (short)0x40) != 0);
        }
    }

我要做的就是使用类似的代码来确定我在Windows 10企业版上的时间。

非常感谢

0 个答案:

没有答案