Manage ServiceNow CLI extensions
Add extensions to the ServiceNow CLI to load additional functionality and commands, update existing extensions, or remove extensions you no longer need.
Before you begin
Role required: none.
Procedure
Find available extensions.
Open your system's command-line tool and execute this command.
$ snc extension list-available -o tableThe system lists available extensions and associated details.
NAME DESCRIPTION VERSION INSTALLED -------------------------------------------------------------------------------------- ui-component Build and deploy components 19.0.0-alpha.15 false
Install an extension.
Open your system's command-line tool and execute this command.
$ snc extension add --name <extension-name>
Update an extension.
Open your system's command-line tool and execute this command.
$ snc extension update --name <extension-name>
Remove an extension.
Open your system's command-line tool and execute this command.
$ snc extension remove --name <extension-name>
Parent Topic:ServiceNow CLI