Search notes:

PowerShell: Cmdlet parameters

get-command -parameterName asJob

Finding cmdlets with a given parameter

The following command finds all (installed) cmdlets that have the -encoding parameter:
foreach ($cmd in get-command) {
   if ($cmd.parameters -ne $null -and $cmd.parameters.ContainsKey('encoding')) {
      $cmd.name
   }
}

See also

-asJob
-computerName
-encoding

Index