You can see the aliases for a parameter for a specific command by accessing its Parameters collection:
[stextbox id=’grey’](Get-Command Get-Service).Parameters.Values | Select-Object -Property Name, Aliases[/stextbox]
To create parameter name aliases for your functions :
[stextbox id=’grey’]function Get-Something
{
Param
(
[Parameter(Mandatory=$true)]
[Alias(‘Name’, ‘ProcName’)]
[string[]$ProcessName
)
}[/stextbox]