---
title: "Deprecation: #82609 - Deprecate TYPO3.Utility"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:deprecation-82609"
source: "Changelog/9.0/Deprecation-82609-DeprecateTYPO3Utility.rst"
typo3-version: "9.0"
typo3-major: 9
type: "deprecation"
issue: 82609
forge: "https://forge.typo3.org/issues/82609"
tags: ["JavaScript", "Backend", "NotScanned"]
rendered: "2026-09-19T12:12:50+00:00"
---

# Deprecation: #82609 - Deprecate TYPO3.Utility {#deprecation-82609}

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

## Description {#description}

The public property `TYPO3.Utility` has been marked as deprecated. `Utility` may be used in AMD based modules by
importing `TYPO3/CMS/Backend/Utility` instead.

## Affected Installations {#affected-installations}

All extensions using `TYPO3.Utility` are affected.

## Migration {#migration}

Import `TYPO3/CMS/Backend/Utility` in your AMD module.

Example code:

```javascript
define(['TYPO3/CMS/Backend/Utility'], function(Utility) {
	// use Utility here
});
```
