Private/PartnerMenu/Get-PartnerMenuHeader.ps1
function Get-PartnerMenuHeader() { Param( [Parameter()] [string]$SectionString ) Clear-Host Write-host "#######################################" Write-Host "# Welcome to the Jysk IT Partner Menu #" -ForegroundColor Green Write-host "#######################################" if($SectionString) { Write-Host $SectionString -ForegroundColor Cyan Write-Host "" } } |