68

Is there a way to know if the Windows machine I'm working on is virtual or physical? (I'm connecting with RDP to the machine. If it's a virtual machine it is working and handled by VMWare).

Duncan Jones
  • 680
  • 1
  • 6
  • 17
  • 2
    see also - http://stackoverflow.com/questions/779723/determine-when-running-in-a-virtual-machine – warren Feb 03 '10 at 13:51

16 Answers16

75

In the CMD window type:

SYSTEMINFO

You will find a line with the following text (or similar):

System Manufacturer:       VMware, Inc.
System Model:              VMware Virtual Platform
Greg
  • 167
  • 4
castrocra
  • 751
  • 5
  • 2
40

If it's Windows, just have a look at the hardware screens. It'll have a billion and five VMWare-branded virtual devices.

Oli
  • 1,791
  • 17
  • 27
20

If it's handled by VMware, it isn't too difficult at the present moment. This could change in the future.

# dmidecode -s system-manufacturer
VMware, Inc.
Michael Hampton
  • 237,123
  • 42
  • 477
  • 940
Matt Simmons
  • 20,218
  • 10
  • 67
  • 114
  • I get 'dmidecode' is not recognized as an internal or external command on both Windows 7 and 10 ESXi 6.0 VMs. – Andrew S May 08 '18 at 15:59
  • [`dmidecode`](https://www.tecmint.com/how-to-get-hardware-information-with-dmidecode-command-on-linux/) is a linux command used to get information about the hardware. It does not work on Windows. – Jaime Aug 06 '18 at 01:29
  • for `linux` OS this is the best option to detect hardware vs virtual machine.. – Satish Sep 10 '18 at 01:10
18

In Linux you can also use "virt-what". "virt-what - detect if we are running in a virtual machine".

Greg
  • 167
  • 4
Mike
  • 21,910
  • 7
  • 55
  • 79
10

On Windows, from CMD:

Systeminfo | findstr /i model

returns something like:

System Model:              VMware Virtual Platform
                           [01]: Intel64 Family 6 Model 26 Stepping 5 GenuineInt
Dan
  • 737
  • 5
  • 11
BurnoutTech
  • 101
  • 1
  • 2
10

On Linux, run this:

$ dmesg |grep -i hypervisor
 Hypervisor detected: KVM
Arash
  • 201
  • 2
  • 2
  • 5
    for linux you type `dmesg |grep DMI` Virtual Machines: [root@myhost ~]# dmesg |grep DMI
    DMI 2.3 present. DMI: Microsoft Corporation Virtual Machine/Virtual Machine, BIOS 090006 05/23/2012 [root@myhost ~]# dmesg |grep -i virtual DMI: Microsoft Corporation Virtual Machine/Virtual Machine, BIOS 090006 05/23/2012 Booting paravirtualized kernel on bare hardware input: Macintosh mouse button emulation as /devices/virtual/input/input1 scsi 0:0:0:0: Direct-Access Msft Virtual Disk 1.0 PQ: 0 ANSI: 4 input: Microsoft Vmbus HID-compliant Mouse as /devices/virtual/input/input4 Physical: [root@backdev1
    – gabo34 Apr 10 '14 at 17:00
  • this worked for me. `dmidecode` returned `permission denied !`. – Alok Mishra Nov 19 '18 at 08:58
4

If you are in Windows, as castrocra says, you can run the systeminfo command from inside a cmd shell, then look for the "BIOS Version".

These are probably real machines:

BIOS Version:              Dell Inc. A03, 06/12/2010
BIOS Version:              Phoenix Technologies, LTD MS7254 1.08, 08/03/2007

This, on the other hand, is almost certainly a virtual machine:

BIOS Version:              VMware, Inc. VMW71.00V.0.B64.1201040214, 04/01/2012
Luke
  • 381
  • 1
  • 5
  • 13
4

It has been answered, but FWIW you can do this in powershell:

gwmi -q "select * from win32_computersystem"

The "Manufacturer" will be "Microsoft Corporation" and the "Model" will be "Virtual Machine" if it's a virtual machine, or it should display regular manufacturer details if not, e.g. "Dell Inc." and "PowerEdge R210 II" respectively.

Richard Hauer
  • 257
  • 1
  • 3
  • 10
  • Funny. _My_ Windows VM says the Manufacturer and Model are both "Bochs". – Michael Hampton Aug 22 '14 at 02:07
  • 1
    Or in cmd: `wmic computersystem get manufacturer | find "VMware" && echo In VMWare || echo Not in VMWare`. It's faster than `systeminfo`-based solutions. – atzz Mar 03 '15 at 13:13
  • @MichaelHampton Are you using VMs? Which platform - HyperV, VMWare or something else? Seems like the VM is probably being run in a Bochs emulator or something like that. – Richard Hauer Oct 31 '15 at 04:42
3

On Linux if you prefer to look under /proc try

cat /proc/cpuinfo | grep flags | grep hypervisor
e271p314
  • 131
  • 2
1

Even simpler - wmic /node: bios get serialnumber

Anything that returns a Dell-style serial number is physical.

It will also return "VMware-42 22 26 a8 dd 6e e3 b3-2e 03 fc 2c 92 ae 2e 89", if it's a virtual machine.

Magilla66
  • 11
  • 2
  • Sadly, this is not working all the time. Our ESXi servers are running a DELL VMware Image, and all VMs claim to be a Dell hardware server via WMI. The serial number is the DELL service tag. – Tobias Dec 11 '19 at 07:43
0

There is another option here which describes the official way to do so:

For Windows:

Click Start > Run. Type msinfo32 and press Enter. In the right pane, look for System Manufacturer for 'VMware, Inc.'

0

You could try the "Host Detection" program.

rkthkr
  • 8,503
  • 26
  • 38
  • 1
    This link is broken as of 2019. I found [this page](http://www.codegurus.be/Programming/c++_en.htm) on the site that links to the program page, but *that* link is also broken. – Bacon Bits Dec 26 '19 at 17:25
  • Seems like the last working cached page of this was back in 2007: http://web.archive.org/web/20070401065556/http://www.codegurus.be/codegurus/Programming/virtualpc&vmware_en.htm – David Jan 29 '21 at 01:47
0

If it's a Unix VM, use imvirt. It's a Perl script that detects VMWare, Xen, and several others.

Peter Westlake
  • 806
  • 2
  • 6
  • 17
0

One (relatively) simple way to detect key virtualization information is via WMI / WBEM.  You can use the root\CIM2 namespace and access  the Baseboard class (full of interesting BIOS information) to get a description of the "physical" system.  This class often includes information about the motherboard and chassis  - manufacture, model, serial number, other.

Run the following command from a command prompt or PowerShell session:

wmic baseboard get manufacturer, product, Serialnumber, version
Alex
  • 101
  • 1
-2

I had the same question and found that there are a lot of processes running with "VM" in the name, for example VMWareTray.exe

Josh
  • 1
-2

nbtstat -a The outcome will tell you as VMs have a speecific prefix which is 00-50-56-XX-XX-XX. There is also another prefix it uses but I can not remember at the top of my head but I recall Vcenter uses 00-50-56-XX-XX-XX so this ios the one I check only.

I think this is the best way, personally.