Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
PSToolbox
0.4.1
Get-WindowTitle.ps1
function
Get-WindowTitle
{
<#
.SYNOPSIS
Gets a custom title Powershell console window
.EXAMPLE
Get-WindowTitle
C:\Program Files\PowerShell\7\pwsh.exe
#>
param
(
)
$Host
.
UI
.
RawUI
.
WindowTitle
}