uipath-cli
latest
false
- Visão geral
- Introdução
- Conceitos
- Using UiPath CLI
- Guias de instruções
- CI/CD recipes
- Referência de comando
- Visão geral
- Códigos de saída
- Global options
- uip codedagent
- uip docsai
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- criar projeto
- 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
- Migração
- Reference & support
UiPath CLI user guide
Última atualização 7 de mai de 2026
uip rpa indicate-application invokes Studio's on-screen application indicator and stores the result as a screen entry in the project's Object Repository. Once registered, the screen becomes a reusable target that activities and child elements can hang off of.
Studio drives the indicator UI, so the verb requires a Windows runner — the user (or a UI automation agent) needs to physically point at the application window when prompted.
Synopsis
uip rpa indicate-application [--name <string>] [--parent-id <string>] [--parent-name <string>] [--description <string>] [--activity-class-name <string>]
uip rpa indicate-application [--name <string>] [--parent-id <string>] [--parent-name <string>] [--description <string>] [--activity-class-name <string>]
Opções
| Bandeira | Description |
|---|---|
--name <string> | Name for the screen as it will appear in the Object Repository. |
--parent-id <string> | Application reference ID to create the screen under. Takes priority over --parent-name. |
--parent-name <string> | Application name to create the screen under. Used when --parent-id is not provided. |
--description <string> | Optional description for the screen. |
--activity-class-name <string> | Optional activity type name, recorded with the screen entry. |
For the complete option list on your installed tool version, run:
uip rpa indicate-application --help
uip rpa indicate-application --help
Exemplos
# Add a new screen named "MainWindow" under the SAP application
uip rpa indicate-application \
--name MainWindow \
--parent-name SAP \
--description "Primary SAP transaction screen"
# Use an explicit parent application ID (faster when the ID is already known)
uip rpa indicate-application \
--name LoginScreen \
--parent-id 7c8a4d2e-1f3b-4c8d-9b1f-9f6dd2c4f6d2
# Add a new screen named "MainWindow" under the SAP application
uip rpa indicate-application \
--name MainWindow \
--parent-name SAP \
--description "Primary SAP transaction screen"
# Use an explicit parent application ID (faster when the ID is already known)
uip rpa indicate-application \
--name LoginScreen \
--parent-id 7c8a4d2e-1f3b-4c8d-9b1f-9f6dd2c4f6d2
Related
uip rpa indicate-element— indicate an individual element on a previously indicated screen.