The best way for apps to detect if they are running on the Device Emulator is to use this snippet of code: WCHAR wszMachineName[128]; SystemParametersInfo(SPI_GETOEMINFO, sizeof(wszMachineName), &wszMachineName, 0); On the DeviceEmulator, it will
Read More...