# pw users delete

> Source: https://parallelworks.com/docs/cli/pw/users/delete

## pw users delete

Delete a user from the organization

### Synopsis

The **pw users delete** command deletes a user and cleans up all their resources.

By default it uses the organization from your current context.
Use **--org** to target a different organization.

You will be prompted to type the username to confirm deletion.
Use **-f** to skip the confirmation prompt.

```
pw users delete <username> [flags]
```

### Examples

```
  # Delete a user
  pw users delete jake.thayne
  
  # Delete a user from a specific organization
  pw users delete --org my-org jake.thayne
  
  # Skip confirmation
  pw users delete -f jake.thayne
```

### Options

```
  -f, --force        Skip confirmation prompt
  -h, --help         help for delete
      --org string   Target organization (defaults to current context)
```

### Options inherited from parent commands

```
      --context string         The context to use. Overrides PW_CONTEXT environment variable and current context from config.
      --platform-host string   The Parallel Works ACTIVATE platform host to use. Will override any other platform host settings.
  -v, --verbose                Enable verbose logging
```

### SEE ALSO

* [pw users](/docs/cli/pw/users)	 - Manage organization users
