> ## Documentation Index
> Fetch the complete documentation index at: https://docs.askui.com/llms.txt
> Use this file to discover all available pages before exploring further.

# AskUI-RunProject

### SYNOPSIS

Starts an AskUI automation project.

### DESCRIPTION

The AskUI-RunProject cmdlet executes an AskUI automation project using the specified start script.
By default, it looks for and runs the 'askui' script defined in the project's package.json.

### PARAMETERS

* `-StartScriptName` | *\<String>* - Name of the script that will start the AskUI project. Default is 'askui'.

### EXAMPLES

#### EXAMPLE 1

Starts the automation using the default 'askui' script.

```powershell theme={null}
AskUI-RunProject
```

#### EXAMPLE 2

Starts the automation using a custom script named "custom-test".

```powershell theme={null}
AskUI-RunProject -StartScriptName "custom-test"
```
