diff --git a/HyperVCheck.ps1 b/HyperVCheck.ps1 new file mode 100644 index 0000000..c21c391 --- /dev/null +++ b/HyperVCheck.ps1 @@ -0,0 +1,5 @@ +Get-VM | ForEach-Object { + $VMName = $_.Name + $CheckpointCount = (Get-VMCheckpoint -VMName $VMName).Count + Write-Host "$VMName - Checkpoints: $CheckpointCount, Status: $($_.Status)" +} \ No newline at end of file