Skip to content

pacx plugin list

github-actions[bot] edited this page Mar 15, 2026 · 3 revisions

Searches plugin registrations by name and displays results as a hierarchy tree (package → assembly → type → step → image).

Aliases

pacx plugin search

Usage

Search for anything containing 'Contoso' across all levels:

pacx plugin list --name Contoso

Search for assemblies whose name starts with 'Contoso' (faster, avoids full-scan on packages):

pacx plugin list --name Contoso* --level Assembly

Search for plugin types containing 'AccountPlugin' in a specific solution:

pacx plugin list --name AccountPlugin --level Type --solution MySolution

Arguments

Long Name Short Name Required? Description Default value Valid values
name n Y Search term. Use a trailing * for a starts-with search (e.g. 'Contoso*'); otherwise a contains search is used. - String
level l N Restrict the search to a single hierarchy level: Package, Assembly, Type, or Step. When omitted, all levels are searched. Images are always shown as children of matching steps. - Package, Assembly, Type, Step
solution s N Unique name of a solution. When provided, only plugin registrations that belong to the specified solution are shown. - String

Command list

Clone this wiki locally