UiPath Documentation
uipath-cli
latest
false
Guide de l'utilisateur de UiPath CLI
Important :
Ce contenu a été traduit à l'aide d'une traduction automatique. La localisation du contenu nouvellement publié peut prendre 1 à 2 semaines avant d’être disponible.

uip solution list

Syntax and options for `uip solution list`, which lists Studio Web solutions or scans a directory for local ones.

Remarque :

uip solution list is a Preview command — it may change without a MAJOR version bump. See Versioning.

uip solution list has two modes. By default, it lists the Studio Web solutions you own or that are shared with you — the SolutionIds it returns are what uip solution download and uip solution delete take. With --local, it instead scans a directory tree for local solutions (.uipx manifests) and flags stale or ambiguous ones.

Synthèse

uip solution list [-l <n>] [--offset <n>] [--name <pattern>] [--sort-by <column>] [--sort-order <Ascending|Descending>]
uip solution list --local [directory] [--check-cloud]
uip solution list [-l <n>] [--offset <n>] [--name <pattern>] [--sort-by <column>] [--sort-order <Ascending|Descending>]
uip solution list --local [directory] [--check-cloud]

Cloud mode (default)

Lists Studio Web solutions. Requires an authenticated session with an organization name resolved.

Options

ShortLongValeur (Value)DefaultDescription
-l--limitnumber (1–100)50Maximum solutions to return.
--offsetNumérique0Number of solutions to skip.
--nametextServer-side keyword filter on solution name.
--sort-bycolumnserver defaultColumn to sort by.
--sort-orderAscending | DescendingSort direction.
--login-validityminutes10Minimum minutes before token expiration to trigger a refresh.

The cloud-only options above are rejected with an error if passed together with --local or --check-cloud.

Exemples

uip solution list --limit 2
uip solution list --limit 2

Format des données (--sortie json)

{
  "Code": "SolutionsList",
  "Data": [
    {
      "Id": "a1b2c3d4-0000-0000-0000-000000000001",
      "Name": "Examples",
      "LastModifiedTime": "2025-04-15T10:30:00Z",
      "PublishStatus": "draft",
      "Projects": []
    }
  ]
}
{
  "Code": "SolutionsList",
  "Data": [
    {
      "Id": "a1b2c3d4-0000-0000-0000-000000000001",
      "Name": "Examples",
      "LastModifiedTime": "2025-04-15T10:30:00Z",
      "PublishStatus": "draft",
      "Projects": []
    }
  ]
}

Local mode (--local)

Scans a directory tree for local solutions by finding .uipx manifests, instead of calling Studio Web.

Options

LongValeur (Value)DefaultDescription
--local [directory]Chemin d'accèsRépertoire actuelScan this directory tree for .uipx manifests. Bare --local scans the current directory.
--check-cloudDrapeaudésactivéAlso resolve each local solution's SolutionId against Studio Web and report OK / NotFound. Implies --local and requires authentication.

Exemples

uip solution list --local ./workspace

uip solution list --local ./workspace --check-cloud
uip solution list --local ./workspace

uip solution list --local ./workspace --check-cloud

Format des données (--sortie json)

{
  "Code": "LocalSolutionsList",
  "Data": [
    {
      "Path": "Examples",
      "Name": "Examples",
      "UipxFile": "Examples.uipx",
      "SolutionId": "a1b2c3d4-0000-0000-0000-000000000001",
      "ProjectCount": 2,
      "Warnings": []
    }
  ]
}
{
  "Code": "LocalSolutionsList",
  "Data": [
    {
      "Path": "Examples",
      "Name": "Examples",
      "UipxFile": "Examples.uipx",
      "SolutionId": "a1b2c3d4-0000-0000-0000-000000000001",
      "ProjectCount": 2,
      "Warnings": []
    }
  ]
}

With --check-cloud, each row adds a CloudStatus field (OK or NotFound). If the scan couldn't enter some subtree, the response's Instructions field names which ones were skipped — the list may be incomplete in that case.

Codes de sortie

Voir Codes de sortie pour le contrat partagé.

Voir également

Cette page vous a-t-elle été utile ?

Connecter

Besoin d'aide ? Assistance

Vous souhaitez apprendre ? UiPath Academy

Vous avez des questions ? UiPath Forum

Rester à jour