More
Browsing Tag

Hyper-V

Migrating Hyper-V Virtual machines between clusters and forests

By Antti Hurme 25/08/2019 2 Comments 6 Min Read

Word of Warning: Hyper-V and it’s components suck, this guide is sketchy at best as i’m writing it out of memory, and there’s probably something form the hours of debugging. If the guide is missing something crucial, please leave a comment so I can correct it. Verify and validate everything before running it in your production environment. By jumping through all these hoops, I was able to live migrate VM’s…

Continue Reading

Powershell: Get all Hyper-V Checkpoints in a cluster (and remove them)

By Antti Hurme 09/11/2018 1 Comment 1 Min Read

Powershell is the way to go if you need to get all your checkpoints in a cluster. Get-VM -ComputerName (Get-ClusterNode -Cluster h-pool) | Get-VMSnapshot | Select VMName,Name,SnapshotType,CreationTime,ComputerName Get all VM’s that have a checkpoit You can filter the results by adding a where clause, for example to get all recovery snapshots left behind by Veeam or any other backup solution. Get-VM -ComputerName (Get-ClusterNode -Cluster h-pool) | Get-VMSnapshot | Where-Object {$_.SnapshotType…

Continue Reading