Summary: Learn how to get only printer examples that are related to Windows PowerShell.
How can I quickly and easily see only examples of Windows PowerShell commands that are related to printing
in Help?
Use the Get-Command cmdlet, then pipe the results to the Foreach-Object cmdlet and call Get-Help:
Get-Command -Noun printer* | Foreach-Object {get-help $_.name -ex} | more