Powershell has a large autocomplete that makes it easy to autocomplete options. Is it possible to provide this autocomplete when calling the application? For example.
.\myscript.ps1 -Databa (pressing tab here will fill in Database)
but if you ultimately decide to replace the script with the correct application
.\myapp.exe -Databa (pressing tab does nothing)
An application is a .NET application (if that helps). Is there any way for this to connect to any function that is used to determine the parameters?
source
share