← All commands
Topic hub Services & Processes
Windows Linux Services & Processes Scheduling

Windows schtasks /delete equivalent in Linux

Stops and disables a timer unit.

Windows schtasks /delete
Linux equivalents
Debian/Ubuntu same command
systemctl disable --now TIMER.timer
Fedora same command
systemctl disable --now TIMER.timer
Arch same command
systemctl disable --now TIMER.timer

Overview

What this command does

Stops and disables a timer unit.

Migration tip: Check the distro-specific rows before copying; package names and service names can differ even when the tool name is similar.

Practical tasks

Common use cases

Disable scheduled task

Stops and disables a timer unit.

systemctl disable --now TIMER.timer

Disable scheduled task

systemctl --help

Show command help when supported

man systemctl

Open the manual page when installed

Ready to run

Copyable Linux commands

Review paths, device names, package names and permissions before running any command.

systemctl disable --now TIMER.timer

Walkthrough

Examples with explanations

# Windows equivalent: schtasks /delete
systemctl disable --now TIMER.timer

Reference

Common options and variations

Command or optionUse
systemctl disable --now TIMER.timerDisable scheduled task
systemctl --helpShow command help when supported
man systemctlOpen the manual page when installed

Distro differences

Debian/Ubuntu vs Fedora vs Arch

The equivalent is shown for Debian/Ubuntu, Fedora and Arch. Some rows use a different package manager or helper tool where Linux distributions commonly diverge.

DistributionPackage manager / baseEquivalent commandDifference to notice
Debian/Ubuntu same command systemctl disable --now TIMER.timer Same command on this distribution.
Fedora same command systemctl disable --now TIMER.timer Same command on this distribution.
Arch same command systemctl disable --now TIMER.timer Same command on this distribution.

Keep learning

Related Services & Processes commands