Skip to content

Instantly share code, notes, and snippets.

@bielawb
Created March 2, 2017 21:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bielawb/dc6ce884876e7a180f0c45d409384d38 to your computer and use it in GitHub Desktop.
Save bielawb/dc6ce884876e7a180f0c45d409384d38 to your computer and use it in GitHub Desktop.
Format - bez - format - bez...
# OK
Get-Process | Format-Wide -Column 3 -Property Path
# ??
Get-Process | Format-Wide -Column 3 -Property Path | Where Path -notlike 'c:\windows\*'
# OK... format...?
Get-Process | Where Path -notlike 'c:\windows\*'
# OK
Get-Process | Where Path -notlike 'c:\windows\*' | Format-Wide -Column 3 -Property Path
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment