.net - How to detect if my application is running in a virtual machine? -


How can I locate (.NET or Win32) if my version is running on a virtual machine?

According to the blog post "", you can use WMI to check the motherboard manufacturer In PowerShell:

  (gwmi Win32_BaseBoard). Product -Ek "Microsoft Corporation"  

Comments