Anpassung der Hyper-V Einstellungen per PowerShell Schleife
Das folgende Skript stellt die lokalen Hyper-V Einstellungen auf mehreren Servern um: ### Standard-Pfade anpassen $servers = „srv01″,“srv02″,“srv03“ foreach ($server in $servers) { Invoke-Command -ComputerName $server -ScriptBlock { Set-VMHost -MaximumStorageMigrations 4 -MaximumVirtualMachineMigrations 4 -VirtualMachineMigrationPerformanceOption SMB -VirtualHardDiskPath C:\ClusterStorage\Vol1 -VirtualMachinePath C:\ClusterStorage\Vol1 } }

