in the program I'm using there is this code telling me if the operating system is Embedded
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);
}
}
what I have to do is use a similar code to figure out when I'm on Windows 10 Enterprise.
Thanks so much