Skip to content

Instantly share code, notes, and snippets.

@indented-automation
Last active August 13, 2023 23:13
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save indented-automation/26c637fb530c4b168e62c72582534f5b to your computer and use it in GitHub Desktop.
Save indented-automation/26c637fb530c4b168e62c72582534f5b to your computer and use it in GitHub Desktop.
function Get-ArgumentCompleter {
<#
.SYNOPSIS
Get custom argument completers registered in the current session.
.DESCRIPTION
Get custom argument completers registered in the current session.
By default Get-ArgumentCompleter lists all of the completers registered in the session.
.EXAMPLE
Get-ArgumentCompleter
Get all of the argument completers for PowerShell commands in the current session.
.EXAMPLE
Get-ArgumentCompleter -CommandName Invoke-ScriptAnalyzer
Get all of the argument completers used by the Invoke-ScriptAnalyzer command.
.EXAMPLE
Get-ArgumentCompleter -Native
Get all of the argument completers for native commands in the current session.
#>
[CmdletBinding(DefaultParameterSetName = 'PSCommand')]
param (
# Filter results by command name.
[String]$CommandName = '*',
# Filter results by parameter name.
[Parameter(ParameterSetName = 'PSCommand')]
[String]$ParameterName = '*',
# Get argument completers for native commands.
[Parameter(ParameterSetName = 'Native')]
[Switch]$Native
)
$getExecutionContextFromTLS = [PowerShell].Assembly.GetType('System.Management.Automation.Runspaces.LocalPipeline').GetMethod(
'GetExecutionContextFromTLS',
[System.Reflection.BindingFlags]'Static,NonPublic'
)
$internalExecutionContext = $getExecutionContextFromTLS.Invoke(
$null,
[System.Reflection.BindingFlags]'Static, NonPublic',
$null,
$null,
$psculture
)
if ($Native) {
$argumentCompletersProperty = $internalExecutionContext.GetType().GetProperty(
'NativeArgumentCompleters',
[System.Reflection.BindingFlags]'NonPublic, Instance'
)
} else {
$argumentCompletersProperty = $internalExecutionContext.GetType().GetProperty(
'CustomArgumentCompleters',
[System.Reflection.BindingFlags]'NonPublic, Instance'
)
}
$argumentCompleters = $argumentCompletersProperty.GetGetMethod($true).Invoke(
$internalExecutionContext,
[System.Reflection.BindingFlags]'Instance, NonPublic, GetProperty',
$null,
@(),
$psculture
)
foreach ($completer in $argumentCompleters.Keys) {
$name, $parameter = $completer -split ':'
if ($name -like $CommandName -and $parameter -like $ParameterName) {
[PSCustomObject]@{
CommandName = $name
ParameterName = $parameter
Definition = $argumentCompleters[$completer]
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment