Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find if windows is running on a vm or on a physical machine?

I have a windows server where we run some of the project managements services. I usually remote desktop into it to manage the service.

The service has become really slow and the documentation says that its not advisable to run the service on a VM.

Now how do i find out if the windows install is running on a VM?

like image 856
usha Avatar asked Oct 21 '13 16:10

usha


People also ask

How do I know if my operating system is running on a virtual machine?

The easiest way to find if we are working on a virtual or physical machine is using dmidecode utility. Dmidecode, DMI table decoder, is used to find your system's hardware components, as well as other useful information such as serial numbers and BIOS revision.


2 Answers

You could take a look through device manager, you'll most likely have quite a few VMWare of virtual drivers that you wouldn't get on a physical machine.

Also you could type systeminfo into a CMD window and if it says System Manufacturer: VMware, Inc. or similar instead of Microsoft Windows then you'll be able to work out of the set-up is virtual or not.

like image 161
Samuel Nicholson Avatar answered Nov 11 '22 04:11

Samuel Nicholson


For windows, Click Start → Write msinfo32 → press Enter

System manufacturer info will display "VMWare. Inc" if it is a VMWare VM. Probably other VM platforms like Hyper-V, etc. will also fill this info.

like image 43
user6751391 Avatar answered Nov 11 '22 04:11

user6751391