> For the complete documentation index, see [llms.txt](https://wfsys.gitbook.io/workflow-forms-syntax/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wfsys.gitbook.io/workflow-forms-syntax/workflow_forms/commands/application_run_command.md).

# ApplicationRunCommand

## Шаблон ApplicationRunCommand <a href="#template" id="template"></a>

```xml
<Command Name="" Type="ApplicationRunCommand" Assembly="Commands">
  <!--Тэги, общие для всех команд-->
  <Condition Name="" />
  <Lock Value="" />
  <!--Тэги, специфичные для ApplicationRunCommand-->
  <Async Value="" />
  <Application></Application>
  <Arguments></Arguments>
</Command>
```

## Описание ApplicationRunCommand <a href="#description" id="description"></a>

```xml
<Command Name="ApplicationRunCommandName" Type="ApplicationRunCommand" Assembly="Commands">
  <!--Тэги, общие для всех команд-->
  <!--Тэги, специфичные для ApplicationRunCommand-->
</Command>
```

### Результат выполнения ApplicationRunCommand <a href="#result" id="result"></a>

Команда не имеет результата.

## Тэги, специфичные для ApplicationRunCommand <a href="#specific-tags" id="specific-tags"></a>

### Async <a href="#async" id="async"></a>

Признак, определяющий, будет ли выполнение команды происходить в асинхронном режиме (в фоновом потоке).

Необязательный тэг. Значение тэга не ожидается.\
Обязательный атрибут `Value` ожидает логическое значение

По умолчанию используется значение False.

```xml
<Async Value="False" />
```

### Application <a href="#application" id="application"></a>

Путь до открываемого приложения (файла).

Необязательный тэг. Любое значение будет переведено в текстовое.

Если значение тэга `<Application>` пустое, то используется значение, заданное в тэге [`<Arguments>`](#arguments).

Если значение тэга [`<Arguments>`](#arguments) будет также пустым, то команда ничего не выполнит.

Поддерживаются [константы замены](/workflow-forms-syntax/workflow_forms/values/replacement_constants.md).

```xml
<Application>Application</Application>
```

### Arguments <a href="#arguments" id="arguments"></a>

Аргументы для запуска приложения.

Необязательный тэг. Любое значение будет переведено в текстовое.

Поддерживаются [константы замены](/workflow-forms-syntax/workflow_forms/values/replacement_constants.md).

```xml
<Arguments>Arguments</Arguments>
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://wfsys.gitbook.io/workflow-forms-syntax/workflow_forms/commands/application_run_command.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
