Skip to content

Instantly share code, notes, and snippets.

@techthoughts2
Created April 23, 2021 06:15
Show Gist options
  • Save techthoughts2/afa065350fcda8757143dd0b72372b96 to your computer and use it in GitHub Desktop.
Save techthoughts2/afa065350fcda8757143dd0b72372b96 to your computer and use it in GitHub Desktop.
$GetVM={Get-VM | Select-Object -ExpandProperty Name}
$AutoCompleteVM = @{
CommandName = 'New-Foo'
ParameterName = 'VMName'
ScriptBlock = $GetVM
}
Register-ArgumentCompleter @AutoCompleteVM
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment