Looking closer, Win32_BaseBoard returns information on the system board. Makes sense that it might be Intel. The virtual servers are running Windows 2008 R2 (64 bit). I changed it to:

 Code:
Break on

$wmiColl = GetObject("WinMgmts:root/cimv2").ExecQuery("Select * FROM Win32_ComputerSsystem")

For Each $wmiObj in $wmiColl
	
	? $wmiObj.Model
		
Next


and got back VMware Virtual Platform. Is that what you were looking for?

Regards,

Brad