Private/Show-KubeSnapItBanner.ps1
# Function to show KubeSnapIt Banner function Show-KubeSnapItBanner { # Display ASCII art and start message Write-Host "" Write-Host "██╗ ██╗██╗ ██╗██████╗ ███████╗███████╗███╗ ██╗ █████╗ ██████╗ ██╗████████╗" -ForegroundColor Cyan Write-Host "██║ ██╔╝██║ ██║██╔══██╗██╔════╝██╔════╝████╗ ██║██╔══██╗██╔══██╗██║╚══██╔══╝" -ForegroundColor Cyan Write-Host "█████╔╝ ██║ ██║██████╔╝█████╗ ███████╗██╔██╗ ██║███████║██████╔╝██║ ██║ " -ForegroundColor Cyan Write-Host "██╔═██╗ ██║ ██║██╔══██╗██╔══╝ ╚════██║██║╚██╗██║██╔══██║██╔═══╝ ██║ ██║ " -ForegroundColor Cyan Write-Host "██║ ██╗╚██████╔╝██████╔╝███████╗███████║██║ ╚████║██║ ██║██║ ██║ ██║ " -ForegroundColor Cyan Write-Host "╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚══════╝╚══════╝╚═╝ ╚═══╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ " -ForegroundColor Cyan Write-Host "" } |