Functions/Set-PSWindowsTitle.ps1

function Set-PSWindowsTitle {
    param (
        [Parameter(Mandatory = $true)] [ValidateSet("HyperV", "WI")] [string] $Title
    )

    $host.ui.RawUI.WindowTitle = $Title

}