Public/Write-LineBreak.ps1

function Write-LineBreak([string]$Title = "") {
    <#
    .SYSNOPSIS
    This cmdlet outputs a line seperator to the console.
     
    .PARAMETER Title
    An optional string of text to embed into the
    #>


    $line = "`n----------------------------------------------------------------------";
    $limit = $line.Length;
    if (-not [String]::IsNullOrEmpty($Title))
    {
        $line = $line.Insert(4, " $Title ");
        if ($line.Length -gt $limit) { $line = $line.Substring(0, $limit); }
    }

    Write-Host $line; Write-Host "";
}