---
title: "Breaking: #78577 - Lowlevel MissingFilesCommand parameters changed"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-78577"
source: "Changelog/8.5/Breaking-78577-LowlevelMissingFilesCommandParametersChanged.rst"
modified: "2026-09-14T09:47:36+00:00"
---

# Breaking: #78577 - Lowlevel MissingFilesCommand parameters changed

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

## Description

The existing CLI command within EXT:lowlevel for showing missing files that are referenced by TYPO3 records
has been migrated to a Symfony Console command.

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

`--update-refindex` \- updates the reference index before scanning for missing files. If not set, the user is asked if the task should be run
`--dry-run` \- do not delete the references, files but only list the files that are missing but connected to the TYPO3 system

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

## Impact

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

## Affected Installations

Any TYPO3 instances using the lowlevel cleaner for finding missing files in relations.

## Migration

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