---
title: "Feature: #44297 - Interval presets for cron command of scheduler task"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-44297"
source: "Changelog/9.4/Feature-44297-IntervalPresetsForCronCommandOfSchedulerTask.rst"
modified: "2026-09-15T10:46:36+00:00"
---

# Feature: #44297 - Interval presets for cron command of scheduler task

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

## Description

To support administrators creating scheduler tasks, presets have been added to the frequency field.

The default presets are:

```php
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['scheduler']['frequencyOptions'] = [
   '0 9,15 * * 1-5' => 'LLL:EXT:scheduler/Resources/Private/Language/locallang.xlf:command.example1',
   '0 */2 * * *' =>  'LLL:EXT:scheduler/Resources/Private/Language/locallang.xlf:command.example2',
   '*/20 * * * *' =>  'LLL:EXT:scheduler/Resources/Private/Language/locallang.xlf:command.example3',
   '0 7 * * 2' =>  'LLL:EXT:scheduler/Resources/Private/Language/locallang.xlf:command.example4',
];
```
