Public/Get-Intro.ps1

function get-intro {
    [CmdletBinding()]
    param (
        [Parameter(Mandatory = $false)]
        [ValidateSet('yes', 'no')]
        $clear = "yes"
    )

    if ($clear -eq "no") {
    }

    if ($clear -eq "yes") {
        Clear-Host
    }

    Write-Host "
                    _______ __ __
                   | _ .--| .--------|__.-----.
                   |. 1 | _ | | | |
                   |. _ |_____|__|__|__|__|__|__|
                   |: | | _______ __ __
                   |::.|:. | | .-----.-----| | |--.-----.--.--.
                   '--- ---' |.| | | _ | _ | | _ | _ |_ _|
                                  '-|. |-|_____|_____|__|_____|_____|__.__|
                                    |: |
                                    |::.|
                                    '---'
"
 -Foregroundcolor Green

    Write-Host " --------------------------------------------------------------------"      -Foregroundcolor Green
    Write-Host " > "                                                                        -Foregroundcolor Green   -NoNewline
    Write-Host "Use "                                                                                   -ForegroundColor Yellow  -NoNewline
    Write-Host "Get-Info "                                                                              -ForegroundColor Cyan    -NoNewline
    Write-Host "to see a list of Commands "                                   -ForegroundColor Yellow  -NoNewline
    Write-Host "<"                                                                                      -Foregroundcolor Green
    Write-Host " > "                                                                        -Foregroundcolor Green   -NoNewline
    Write-Host "Use "                                                                                   -ForegroundColor Yellow  -NoNewline
    Write-Host "Get-Intro "                                                                             -ForegroundColor Cyan    -NoNewline
    Write-Host "to Clear-Host and return here "                                    -ForegroundColor Yellow  -NoNewline
    Write-Host "<"                                                                                      -Foregroundcolor Green
    Write-Host " --------------------------------------------------------------------"      -Foregroundcolor Green

    Write-Host " "
}