VMware Cloud Community
prakash9339
Enthusiast
Enthusiast
Jump to solution

how to identify??

   Hi

How to identify whether machine is physical or virtual ..if i allocated one VM to user .. user is accessing by RDP how can he know whether system is physical or virtual           

1 Solution

Accepted Solutions
abhilashhb
VMware Employee
VMware Employee
Jump to solution

Its cmd>systeminfo

@Mustafa I'm sure it is a typo. Just corrected it.

Abhilash B
LinkedIn : https://www.linkedin.com/in/abhilashhb/

View solution in original post

0 Kudos
6 Replies
admin
Immortal
Immortal
Jump to solution

If its a windows machine;


try this at a powershell console

gwmi -q "select * from win32_computersystem"


you would probably get this output

----------------------------------------------------

Manufacturer: Microsoft Corporation

Model: Virtual Machine

----------------------------------------------------

alternatively look at the hardware screens you could see a bunch of VMware related device and drivers there.

~dGeorgey

admin
Immortal
Immortal
Jump to solution

If you have internet connectivity, the best way:

get the MAC ID, search for the provider in google..

~dGeorgey

0 Kudos
prakash9339
Enthusiast
Enthusiast
Jump to solution

what about linux ...

0 Kudos
ScreamingSilenc
Jump to solution

For Windows

cmd > systeminfo

If this is a VMware virtual machine, result should be:

System Manufacturer: VMware, Inc.
System Model: VMware Virtual Platform

For Linux

$ dmesg |grep VMware

lspci | grep -i vmware
grep -i vmware /proc/scsi/scsi /proc/ide/*/model

Please consider marking this answer "correct" or "helpful" if you found it useful.
abhilashhb
VMware Employee
VMware Employee
Jump to solution

Its cmd>systeminfo

@Mustafa I'm sure it is a typo. Just corrected it.

Abhilash B
LinkedIn : https://www.linkedin.com/in/abhilashhb/

0 Kudos
ScreamingSilenc
Jump to solution

Thanks Abhilas corrected now.

Please consider marking this answer "correct" or "helpful" if you found it useful.
0 Kudos