Upload files to "/"

This commit is contained in:
2026-03-22 18:43:05 +00:00
parent 6c2d8f214c
commit 8d9b3003ee
+9
View File
@@ -0,0 +1,9 @@
$proc = Get-Process -Name SecurityHealthSystray -ErrorAction SilentlyContinue
if ($null -ne $proc) {
Write-Output "ESP-not-active"
exit 0
} else {
Write-Output "ESP-active"
exit 0
}