нужно создать пачку одинаковых машин
Basically you can pipe the New-VM and Set-VM cmdlets together to achieve something like that.
$templateName = 'template'
$esxName = 'esx'
$dsName = 'ds'
$template = Get-Template -Name $templateName
$ds = Get-Datastore -Name $dsName
$esx = Get-VMHost -Name $esxName
New-VM -Template $template -Name MyVM -VMHost $esx -Datastore $ds -DiskStorageFormat Thin |
Set-VM -NumCpu 2 -MemoryGB 4 -Confirm:$false |
Start-VM -Confirm:$false