# Running in Batch Mode

The decompiler supports the **batch mode operation** with the text and GUI versions of IDA. All you need is to specify the `-Ohexrays` switch in the command line.

## Step 1: Understanding the Switch Format

All batch mode configuration is passed through a single command-line switch. The format of this switch is:

```
-Ohexrays:-option1:-option2...:outfile:func1:func2\...
```

## Step 2: Choose Your Options

Select the options relevant to your use case; all are optional.

* **`-new`** decompile only if output file does not exist
* **`-nosave`** do not save the database (idb) file after decompilation
* **`-errs`** send problematic databases to hex-rays.com
* **`-lumina`** use Lumina server
* **`-mail=my@mail.com`** your email (meaningful if **`-errs`** option is used)

The output file name can be prepended with **`+`** to append to it. If the specified file extension is invalid, **`.c`** will be used.

## Step 3: Specify Functions to Decompile

The functions to decompile can be specified by their **addresses** or **names**.

The `ALL` keyword means all non-library non-trivial functions.

**Example**:

```
idat -Ohexrays:-errs:-mail=john@mail.com:outfile:ALL -A input
```

The example above will decompile all non-library, non-trivial (having more than one instruction) functions to `outfile.c`. In the case of an error, the **.idb** file will be sent to **hex-rays.com**. The `-A` switch is necessary to avoid the initial dialog boxes.


---

# Agent Instructions: 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:

```
GET https://docs.hex-rays.com/core/decompiler/how-tos/running-in-batch-mode.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
