Add simple Hyper-V checkpoint status check script

This commit is contained in:
2025-12-12 10:01:20 +11:00
parent 6ec316020f
commit 058afba6f9

5
HyperVCheck.ps1 Normal file
View File

@@ -0,0 +1,5 @@
Get-VM | ForEach-Object {
$VMName = $_.Name
$CheckpointCount = (Get-VMCheckpoint -VMName $VMName).Count
Write-Host "$VMName - Checkpoints: $CheckpointCount, Status: $($_.Status)"
}