|
Re: Change Help default behaviour Yeah, looks like you don't actually need the join-string.
I would like to request a feature whereby you can set defaults for cmdlet parameters. Something like this, maybe:
Set-CommandDefault -Command:<cmdlet, function, filter> -Parameter:<parameter name> -Value:<some object>
Or perhaps put it in a ps1xml file.
Nick
Jeffrey Snover [MSFT] wrote:
> We didn't make that configurable. You can write a function to do this:
> function myhelp {$helpcmd = "get-help -full $args" ;invoke-expression
> $helpcmd}
>
> You could request this as a feature. |