Hi,
$myCluster = Get-Cluster -Name "MyCluster"
$myVDPortGroup = Get-VDPortgroup -Name "DPortGroup-Default"
$mySharedDatastore = Get-Datastore -Name "vsanDatastore"
New-VM -Name powercliVM03 -ResourcePool $myCluster -Portgroup $myVDPortGroup -DiskGB 1 -MemoryGB 1 -Datastore $mySharedDatastore
say I have 5 hosts in the cluster with DRS disabled, how is the decision made as in which host will the VM be created on?
Can I specify a host directly within the cluster?
Thanks