Hi,
i 'm in vsphere 5.0, i must deploy Windows 2012 so i must change the boot options in my vms
i would change the boot options bios to efi
if i pass this command
$xy=get-vm -name xxxx -location yyy |get-view
$xy.config.firmware give me
bios
i tried this command powershell, but it's not good
get-vm -name xxxx -location yyy |get-view | foreach-object {$_.Config.Firmware("efi")}
but it's not good
can you help me