Summary : Determine how large your Windows PowerShell console is.
How can I see how large my Windows PowerShell console is?
Access the WindowSize property from the $Host object:
$Host.UI.RawUI.WindowSize.Width
$Host.UI.RawUI.WindowSize.He… Read the full text.