I want to create an alias for Get-Help [foo] -online. But I can\'t get arguments to work.
Get-Help [foo] -online
I tried a few things including Set-Alias -Name mano -Val
Set-Alias -Name mano -Val
If you have Powershell v3
$PSDefaultParameterValues = @{ "Get-Help:Online" = {$True} }