...
Command | Sub-command | Description | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
[--server <uri>] | - | This option is used to specify either the server you want to connect to or a folder on disk which contains a .nupkg file. If you do not use this command (it is not mandatory), then the default ExtendNG server CAST Extend server will always be used Remote Server For example https://extendngextend.castsoftware.com:443/api Folder - note that this option is to be used if you have a raw .nupkg file that requires unpacking D:\USER_DATA\Downloads | ||||||||||||||
[--username <username>] | - | When connecting to a server that requires authentication (for example https://extendngextend.castsoftware.com:443/api) to download an extension (with the install option), use these two options to specify your credentials.
| ||||||||||||||
[--password <password>] | - | |||||||||||||||
list | available|installed|upgradable|all | Use this option to produce a list of the extensions as follows:
| ||||||||||||||
install | <extensionId> [--version <version>] [--ignore-dependencies] | Use this option to specify an extension that you want to download on to your machine. Note that you may also need to specify the --username and --password options if the remote server requires authentication
| ||||||||||||||
uninstall | extensionId [--version <version>] | Use this option to specify an extension that you have downloaded to your machine and that you now want to remove from your machine:
|
...
Code Block | ||
---|---|---|
| ||
ExtensionDownloader.exe --server https://extendngextend.castsoftware.com:443/api list upgradable |
...
Code Block | ||
---|---|---|
| ||
ExtensionDownloader.exe --server https://extendngextend.castsoftware.com:443/api --username JHU --password xxxxxx install com.castsoftware.test |
...
Code Block | ||
---|---|---|
| ||
ExtensionDownloader.exe --server https://extendngextend.castsoftware.com:443/api --username JHU --password xxxxxx install com.castsoftware.test --version 1.2.0-funcrel |
...
Code Block | ||
---|---|---|
| ||
ExtensionDownloader.exe --server https://extendngextend.castsoftware.com:443/api --username JHU --password xxxxxx install com.castsoftware.test --version 1.2.0-funcrel --ignore-dependencies |
...