Functions/Set-PSWindowsTitle.ps1
|
function Set-PSWindowsTitle { param ( [Parameter(Mandatory = $true)][string]$Title ) $host.ui.RawUI.WindowTitle = $Title } |
|
function Set-PSWindowsTitle { param ( [Parameter(Mandatory = $true)][string]$Title ) $host.ui.RawUI.WindowTitle = $Title } |