Skip to content

Instantly share code, notes, and snippets.

@Iristyle
Created May 30, 2013 12:03
Show Gist options
  • Save Iristyle/5677364 to your computer and use it in GitHub Desktop.
Save Iristyle/5677364 to your computer and use it in GitHub Desktop.
Filter PowerShell Output Width
# monkey path the built-in output system
filter Out-Default
{
$input |
Out-String -Width 500 -Stream |
Microsoft.PowerShell.Utility\out-default
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment