Latest
From Scripting Guy 5 new tips and tricks
Create PowerShell profiles
http://msdn.microsoft.com/en-us/library/windows/desktop/bb613488(v=vs.85).aspx
help * (man for linux)
New window popup
help get-service -showwindow (v2 help get-process -online )
Auto build you commands
show-command get-wmiobject
Help can get updates
update-help (save-help)
Find the verbs
Get-verb
Find the verbs and count
Measure-object
If you have a conflict
microsoft.powershell.management\get-process
One Line is Magic
get-process | kill -whatif
get-process | kill -confirm
get-process [a-r]*[g-w] | kill -whatif
does it work well in a pipeline?
get-help get-service -full