PHPackages                             patelworld/windows-task-scheduler - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. patelworld/windows-task-scheduler

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

patelworld/windows-task-scheduler
=================================

A PHP library for managing Windows Task Scheduler using PHP

v1.0.0(1y ago)06MITPHPPHP &gt;=7.4

Since Mar 14Pushed 1y ago1 watchersCompare

[ Source](https://github.com/PatelWorld/windows-task-scheduler)[ Packagist](https://packagist.org/packages/patelworld/windows-task-scheduler)[ RSS](/packages/patelworld-windows-task-scheduler/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)DependenciesVersions (3)Used By (0)

Windows Task Scheduler PHP Library
==================================

[](#windows-task-scheduler-php-library)

A PHP library for managing Windows Task Scheduler tasks using SOLID principles and design patterns.

Installation
------------

[](#installation)

```
composer require patelworld/windows-task-scheduler
```

Usage
-----

[](#usage)

### Creating a daily task

[](#creating-a-daily-task)

```
use PatelWorld\TaskScheduler\Factory\TaskFactory;
use PatelWorld\TaskScheduler\WindowsTaskScheduler;

$factory = new TaskFactory();
$scheduler = new WindowsTaskScheduler();

// Create a daily task that runs at 8:00 AM
$task = $factory->createDailyTask(
    'BackupDatabase',
    'C:\\scripts\\backup.bat',
    '08:00'
);

$scheduler->createTask($task);
```

### Listing all tasks

[](#listing-all-tasks)

```
$tasks = $scheduler->getAllTasks();
foreach ($tasks as $task) {
    echo $task->getName() . "\n";
}
```

### Deleting a task

[](#deleting-a-task)

```
$scheduler->deleteTask('BackupDatabase');
```

License
-------

[](#license)

MIT

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance45

Moderate activity, may be stable

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity39

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

430d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/38c9155b44202f35c3315ff34f72e5f53894414a01ab1a9a69c90442918461b6?d=identicon)[patelnwd](/maintainers/patelnwd)

---

Top Contributors

[![patelnwd](https://avatars.githubusercontent.com/u/10633999?v=4)](https://github.com/patelnwd "patelnwd (3 commits)")

### Embed Badge

![Health badge](/badges/patelworld-windows-task-scheduler/health.svg)

```
[![Health](https://phpackages.com/badges/patelworld-windows-task-scheduler/health.svg)](https://phpackages.com/packages/patelworld-windows-task-scheduler)
```

###  Alternatives

[rezzza/formulate

Making life easier while writing complex math formulas, take a breath

1235.3k1](/packages/rezzza-formulate)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
