# tctl v1.17 taskqueue command reference

> Try the new Temporal CLI public preview! Replace tctl with the v1.0 release. Use tctl taskqueue describe for Task Queue details and tctl taskqueue list-partition for partition info.

> **ℹ️ Info:**
> tctl is deprecated
>
> The tctl command line utility has been deprecated and is no longer actively supported.
> We recommend transitioning to [Temporal CLI](/cli) for continued use and access to new features.
>
> Thank you for being a valued part of the Temporal community.
>

The `tctl taskqueue` command enables [Task Queue](/task-queue) operations.

Alias: `t`

- [tctl taskqueue describe](#describe)
- [tctl taskqueue list-partition](#list-partition)

## describe

The `tctl taskqueue describe` command describes the poller information of a [Task Queue](/task-queue).

`tctl taskqueue describe <modifiers> <value>`

The following modifiers control the behavior of the command.

### --taskqueue

_Required modifier_

Specify a [Task Queue](/task-queue).

Alias: `--t`

**Example**

```bash
tctl taskqueue describe --taskqueue <value>
```

### --taskqueuetype

Specify the type of a [Task Queue](/task-queue).
The type can be `workflow` or `activity`.
The default is `workflow`.

**Example**

```bash
tctl taskqueue describe --taskqueue <value> --taskqueuetype <type>
```

## list-partition

The `tctl taskqueue list-partition` command lists the partitions of a [Task Queue](/task-queue) and the hostname for the partitions.

`tctl taskqueue list-partition --taskqueue <value>`

The following modifier controls the behavior of the command.

### --taskqueue

_Required modifier_

Specify a [Task Queue](/task-queue) description.

Alias: `--t`

**Example**

```bash
tctl taskqueue list-partition --taskqueue <value>
```
