Jeff Riechers
05/22/2025, 11:57 AMJon Bucud
05/22/2025, 2:36 PM# Clear the screen
Clear-Host
# Display the warning message
Write-Host "*********************************************"
Write-Host "* *"
Write-Host "* !!! WAIT 30 MINUTES BEFORE SHUTDOWN !!! *"
Write-Host "* CrowdStrike must pull channel files. *"
Write-Host "* *"
Write-Host "*********************************************"
# Calculate and display the time 30 minutes from now
$safeTime = (Get-Date).AddMinutes(30).ToString("hh:mm tt")
Write-Host ""
Write-Host "Safe to shutdown after $safeTime."
Write-Host ""Jeff Riechers
05/22/2025, 2:37 PMJon Bucud
05/22/2025, 3:13 PM