Same results using the back tick to escape it:
Get-Alias -Name `?
Looks like internally, the Name parameter of Get-Alias must do a "like" match on the value entered as the following returns the same results:
Get-Alias | Where-Object Name -like ?
Same results using the back tick to escape it:
Get-Alias -Name `?
Looks like internally, the Name parameter of Get-Alias must do a "like" match on the value entered as the following returns the same results:
Get-Alias | Where-Object Name -like ?