When I run get-help get-process -detailed I get the full help. What would I run if I just wanted to know what the get-process -id parameter does? Is there a way to drill down like that?

link|improve this question

74% accept rate
feedback

1 Answer

up vote 4 down vote accepted

yes, use the -Parameter flag

> Get-Help Get-Process -Parameter id

Just so you're aware you can do a Get-Help on Get-Help.

> Get-Help Get-Help -detailed

Hope that helps

link|improve this answer
Awsome, thanks! – shaiss Sep 27 '11 at 15:13
Very helpful, Kyle! – msorens Sep 28 '11 at 15:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.