Generate VM resource report with powershell

This script will report on the RAM, cores, total disk space. #parameters $output_path = “c:\Users\frank\Documents\” $vmhost = “my-hyp1” $vms=get-vm -ComputerName […]

Hyper V – Set the VM replication schedule

# Manual resync Set-VMReplication -VMName “RESYNC VM” -AutoResynchronizeEnabled 0   # Automatic resync Set-VMReplication –VMName “RESYNC VM” -AutoResynchronizeEnabled 1 -AutoResynchronizeIntervalStart […]