uipath-cli
latest
false
- Vue d'ensemble (Overview)
- Démarrer
- Concepts
- Using UiPath CLI
- Guides pratiques
- CI/CD recipes
- Référence de commande
- Vue d'ensemble (Overview)
- Codes de sortie
- Global options
- uip codedagent
- uip docsai
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- créer-projet
- diff
- find-activities
- get-analyzer-rules
- get-default-activity-xaml
- get-errors
- get-manual-test-cases
- get-manual-test-steps
- get-versions
- get-workflow-example
- indicate-application
- indicate-element
- inspect-package
- install-data-fabric-entities
- install-or-update-packages
- list-data-fabric-entities
- list-workflow-examples
- pack
- restore
- run-file
- search-templates
- start-studio
- stop-execution
- uia
- uip traces
- Migration
- Reference & support
UiPath CLI user guide
Dernière mise à jour 7 mai 2026
uip rpa get-versions lists the available versions of a NuGet package across every feed configured for the active project, sorted newest-first. Use it to pin a dependency to a known-good version before calling uip rpa install-or-update-packages, or to discover the latest stable version of an activity package.
Feed configuration is loaded by Studio, so the verb requires a Windows runner.
Synopsis
uip rpa get-versions --package-id <string> [--include-prerelease]
uip rpa get-versions --package-id <string> [--include-prerelease]
Options
| Drapeau | Description |
|---|---|
--package-id <string> | NuGet package ID, e.g. UiPath.UIAutomation.Activities. |
--include-prerelease | Include prerelease versions in the output. Default: false. |
For the complete option list on your installed tool version, run:
uip rpa get-versions --help
uip rpa get-versions --help
Exemples
# Latest stable versions of the UI Automation activities package
uip rpa get-versions --package-id UiPath.UIAutomation.Activities
# Include prereleases when picking the next version to qualify
uip rpa get-versions --package-id UiPath.Excel.Activities --include-prerelease
# Latest stable versions of the UI Automation activities package
uip rpa get-versions --package-id UiPath.UIAutomation.Activities
# Include prereleases when picking the next version to qualify
uip rpa get-versions --package-id UiPath.Excel.Activities --include-prerelease
Related
uip rpa inspect-package— inspect the public API of a specific package version.uip rpa install-or-update-packages— install a chosen version into the project.