---
title: "Breaking: #78627 - Lowlevel MissingRelationsCommand parameters changed"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-78627"
source: "Changelog/8.5/Breaking-78627-LowlevelDoubleFilesCommandParametersChanged.rst"
typo3-version: "8.5"
typo3-major: 8
type: "breaking"
issue: 78627
forge: "https://forge.typo3.org/issues/78627"
tags: ["CLI", "ext:lowlevel"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Breaking: #78627 - Lowlevel MissingRelationsCommand parameters changed {#breaking-78627}

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

## Description {#description}

The existing CLI command within EXT:lowlevel for showing files within uploads/ that are used by records twice (non-FAL)
has been migrated to a Symfony Console command.

The command previously available via `./typo3/cli_dispatch.phpsh lowlevel_cleaner double_files` is now available
via `./typo3/sysext/core/bin/typo3 cleanup:multiplereferencedfiles` and allows the following CLI options to be set:

`--update-refindex` \- updates the reference index before scanning for multiple-referenced files. If not set, the user is asked if the task should be run
`--dry-run` \- do not copy the files to single-reference them, but only list the references and files.

The PHP class of the old CLI command `TYPO3CMSLowlevelDoubleFilesCommand` has been removed.

## Impact {#impact}

Calling the old CLI command `./typo3/cli_dispatch.phpsh lowlevel_cleaner double_files` will result in an error message.

## Affected Installations {#affected-installations}

Any TYPO3 instances using the lowlevel cleaner for finding files with two records pointing to them.

## Migration {#migration}

Update the CLI call on your servers to the new command line and available options as shown above.
