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

# nsc completion powershell

Generate the autocompletion script for powershell.

`completion powershell` generates a PowerShell autocompletion script for `nsc`.

To load completions in your current shell session:

```bash theme={null}
nsc completion powershell | Out-String | Invoke-Expression
```

To load completions for every new session, add the output of the above command to your
PowerShell profile.

## Usage

```bash theme={null}
nsc completion powershell [--no-descriptions]
```

### Example

```bash theme={null}
nsc completion powershell | Out-String | Invoke-Expression
```

## Options

<h3 id="--no-descriptions">
  \--no-descriptions
</h3>

Disable completion descriptions. By default, the generated script includes a short description
alongside each completion candidate; pass this flag to omit them and print candidates only.
