Skip to content

Instantly share code, notes, and snippets.

@rysstad
Created April 10, 2014 11:25
Show Gist options
  • Save rysstad/10370591 to your computer and use it in GitHub Desktop.
Save rysstad/10370591 to your computer and use it in GitHub Desktop.
# Create object reference to Get-Host
$pshost = get-host
# create reference to the console’s UI.RawUI child object
$pswindow = $pshost.ui.rawui
# Adjust the buffer first:
$newsize = $pswindow.buffersize
$newsize.height = 9999
$newsize.width = 200
$pswindow.buffersize = $newsize
# Adjust the Window size
$newsize = $pswindow.windowsize
$newsize.height = 60
$newsize.width = 200
$pswindow.windowsize = $newsize
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment