在我正在使用的程序中,这段代码告诉我操作系统是否是嵌入式
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企业版上的时间。
非常感谢