Getting list of cmdlets which have a phrase in their help content

Hi friends

if we look at the help content of a Cmdlet such as Add-Content, we see that in the input section, we have this line:

Inputs
    Sytem.Object[], System.String[], System.Management.Automation.PSCredential

now is there any way to get the list of all Cmdlets which have this phrase: " System.Management.Automation.PSCredential"  somewhere in their help content (or at least in their input section in help content)

i tried Get-help | get-member but seems nothing to help me here

thanks in advanced

February 15th, 2015 12:11am

get-command -CommandType Cmdlet

Get-Help get-content|?{$_ -match 'System.Management.Automation.PSCredential'}

Free Windows Admin Tool Kit Click here and download it now
February 15th, 2015 1:13am

Now that I was able to fix my "Get-Command" command here is a more complete example:

Get-Command -CommandType Cmdlet | Get-Help |
     ?{$_ -match 'BackgroundIntelligentTransfer'}|
     select Name

February 15th, 2015 2:21am

Now that I was able to fix my "Get-Command" command here is a more complete example:

Get-Command -CommandType Cmdlet | Get-Help |
     ?{$_ -match 'BackgroundIntelligentTransfer'}|
     select Name

Free Windows Admin Tool Kit Click here and download it now
February 15th, 2015 8:40am

Thank you but that is really and outcome of many blogs that have covered bow to search CmdLets for various things and how to search help "objects" for components.

Anyway, I am glad it was he

February 15th, 2015 8:46am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics