PowerShell for Admins
Tips and Tricks
What are Your PowerShell Newbie Gotchas?
I’m putting together a list of common “gotchas” for PowerShell, mainly things that affect newcomers. So far, I’ve got:
- Piping the output of a Format cmdlet to nearly anything else
- Using -contains instead of -like
- Selecting a subset of object properties and then trying to sort/fiter on a now-missing property
- Wrong syntax for -filter parameters on various commands
- Commands that don’t produce pipeline output (e.g., piping Export-CSV to something)
- Using ConvertTo-HTML without -Fragment and appending multiple pages in one file
- Confusion with ( [ { and the other punctuation
- Concatenating strings (hard) vs. using double quotes (easier)
- $ not being part of the variable name (esp with -ErrorVariable)
- Accumulating objects in a variable and returning it, vs. outputting to the pipeline directly
What are your “gotchas?”
Related Articles
Jul 8, 2021
So you want to start a User Group
But where do you begin? I’ve blogged about this from the reversed perspective on my own blog about finding user groups with a …
Read moreApr 2, 2021
ICYMI: PowerShell Week of 02-April-2021
Topics include help sections, Approved Verbs, Identity Management and more…
Read moreDec 16, 2020
Media Sync: Organize Your Photos and Videos with PowerShell
Do you have photos and videos that you have taken over the years that are scattered all over the place? Do you want to have …
Read more