Directory Cleanup & Addition of Platform Scripts

This commit is contained in:
Andrew Amason
2025-05-14 13:25:48 -04:00
parent 5b9825e6dc
commit 1be4de9e7b
26 changed files with 1595 additions and 90 deletions

View File

@@ -0,0 +1,9 @@
$SystemImage = Repair-WindowsImage -CheckHealth -Online
if ($SystemImage.ImageHealthState -ne "Healthy") {
exit 1
Write-Host $SystemImage.ImageHealthState
} elseif ($SystemImage.ImageHealthState -eq "Healthy") {
exit 0
Write-Host $SystemImage.ImageHealthState
}