Skip to content

Instantly share code, notes, and snippets.

@raspi
Created September 27, 2018 23:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raspi/0771fd23807e6c83f0a088c2b2de40ee to your computer and use it in GitHub Desktop.
Save raspi/0771fd23807e6c83f0a088c2b2de40ee to your computer and use it in GitHub Desktop.
$Shell=$Host.UI.RawUI
$size=$Shell.WindowSize
$size.width=120
$size.height=35
$Shell.WindowSize=$size
# buffer
$size = $Shell.BufferSize
$size.width=[system.console]::BufferWidth
$size.height=[system.console]::BufferHeight
$Shell.BufferSize=$size
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment