Try using the SystemParametersInfoString method from coredll.dll.
StringBuilder sb = new StringBuilder(256); if (SystemParametersInfoString(SPI_GETPLATFORMTYPE, sb.Capacity, sb, 0) != 0) { String name = sb.ToString(); }
Change SPI_GETPLATFORMTYPE to SPI_GETOEMINFO or play with it. you could have more details ..
source share