Skip to content

Instantly share code, notes, and snippets.

@lzybkr
lzybkr / Convert-ArgumentCompleterRegistrationScript.ps1
Created April 27, 2015 18:41
Script to convert TabExpansion++ completers to use Register-ArgmentCompleter
param(
[Parameter(ValueFromPipelineByPropertyName = $true, Mandatory, Position = 0)]
[Alias("PSPath")]
[string]$Path,
[string]$OutputPath
)
process