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

# completion powershell

> Generate PowerShell autocompletion script for the FlexAI CLI

Generate the autocompletion script for powershell.

## Usage

```bash theme={null}
flexai completion powershell [flags]
```

## Flags

| Flag                | Short | Type    | Description                     |
| ------------------- | ----- | ------- | ------------------------------- |
| `--help`            | `-h`  | boolean | Displays this help page.        |
| `--no-descriptions` |       | boolean | Disable completion descriptions |
| `--verbose`         | `-v`  | boolean | Enable verbose logging          |

## Examples

### Generate a powershell completion script

```bash theme={null}

flexai completion powershell > flexai-completion.ps1 && \
mkdir -p (Split-Path $PROFILE) && \
Add-Content -Path $PROFILE -Value 
```
