PowerShell PowerShell function Get-MarcaCoche { param( [Parameter(Mandatory)] [ArgumentCompleter({'Audi','Seat','BMW'})] [string] $Vendor ) "Chosen vendor: $Vendor" } 12345678910 function Get-MarcaCoche { param( [Parameter(Mandatory)] [ArgumentCompleter({'Audi','Seat','BMW'})] [string] $Vendor ) "Chosen vendor: $Vendor"}