> For the complete documentation index, see [llms.txt](https://docs.rumi.systems/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.rumi.systems/rumi-cli/commands/cloud/local/run-admin-script.md).

# run-admin-script

Execute an admin script on a deployed system.

## Syntax

```bash
rumi cloud local run-admin-script --system <name> --script <script-file> [--params <params>]
```

## Options

| Option     | Short | Description                                       | Required |
| ---------- | ----- | ------------------------------------------------- | -------- |
| `--system` | `-s`  | Name of the system                                | Yes      |
| `--script` | `-i`  | Script file to execute                            | Yes      |
| `--params` | `-a`  | Script parameters in `key1=val1,key2=val2` format | No       |

## Example

```bash
rumi cloud local run-admin-script --system my-app --script start.js --params mode=active
```

## See Also

* [launch-admin](/rumi-cli/commands/cloud/local/launch-admin.md)
