---
title: "Feature: #104058 - Introduce install:password:set command"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-104058-1718204204"
source: "Changelog/14.0/Feature-104058-IntroduceInstallpasswordsetCommand.rst"
typo3-version: "14.0"
typo3-major: 14
type: "feature"
issue: 104058
forge: "https://forge.typo3.org/issues/104058"
tags: ["Backend", "CLI", "LocalConfiguration", "ext:install"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Feature: #104058 - Introduce install:password:set command {#feature-104058-1718204204}

See [forge#104058](https://forge.typo3.org/issues/104058)

## Description {#description}

The Install Tool password can now also be set via the TYPO3 command line interface
instead of only via direct file access. This allows for better automation and
easier hash generation without manual steps.

## Usage {#usage}

Interactively create and write an Install Tool password hash:

```bash
vendor/bin/typo3 install:password:set
```

Return the generated password hash without writing to the configuration:

```bash
vendor/bin/typo3 install:password:set --dry-run
```

Run without interaction (generates a random password):

```bash
vendor/bin/typo3 install:password:set --no-interaction
```

Options can be combined as needed:

```bash
vendor/bin/typo3 install:password:set --dry-run --no-interaction
```

The last variation can, for example, be used in CI/CD automation to
generate a suitable password, process the output (the generated password
needs to be persisted separately), and store it in vaults or environment
variables for later use.

## Impact {#impact}

It is now possible to set the hashed Install Tool password using the
TYPO3 command line interface.
