From b9d0b58b4edabcd09ecb4211955ab2efaf6d948d Mon Sep 17 00:00:00 2001 From: JoYo <> Date: Wed, 5 Jan 2022 18:45:02 -0500 Subject: [PATCH] schedule removal instructions --- README.mdown | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/README.mdown b/README.mdown index ca5937f..94ec0f4 100644 --- a/README.mdown +++ b/README.mdown @@ -57,6 +57,17 @@ TaskPath TaskName State -------- -------- ----- \ eso-banana Ready ``` +# Windows Unschedule + +Only run the following command if you wish to remove scheduled run of `eso-banana`. + +To remove the schedule, use the `Unregister-ScheduledTask` command: + +``` +Unregister-ScheduledTask eso-banana +``` + +Press enter to confirm removal. # Linux Installation @@ -80,5 +91,19 @@ Linux command scheduling can be performed with the [crontab](https://help.ubuntu ```bash crontab -e +``` + +Add the following line to your `crontab`. + +``` +0 11 * * * eso-banana-script --verbose +``` +# Linux Unschedule + +Only run the following command if you wish to remove scheduled run of `eso-banana`. + +To remove the schedule, delete the following line from your `crontab -e`. + +``` 0 11 * * * eso-banana-script --verbose ```