Showing posts with label hyper-v. Show all posts
Showing posts with label hyper-v. Show all posts

09 August 2023

List all hyper-v host in a scvmm cluster

 Get-SCVMHost -VMHostCluster ( Get-SCVMHostCluster -Name cluster_name) |  Select-Object Name

12 October 2022

Hyper-v - modify maximum simultaneous live migrations / storage migrations

 

Get-SCVMHostCluster | Select-Object -ExpandProperty nodes | Select-Object name | % {Set-VMHost -ComputerName $PSItem.Name -MaximumStorageMigrations 2 -MaximumVirtualMachineMigrations 2 }



Get-SCVMHostCluster | Select-Object -ExpandProperty nodes | Select-Object name | % {Get-VMHost -C\omputerName $PSItem.Name } | Format-Table -AutoSize Name, MaximumStorageMigrations, MaximumVirtualMachineMigrations