mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 16:22:18 -04:00
10 lines
291 B
PowerShell
10 lines
291 B
PowerShell
#Requires -Version 5.0
|
|
$tasks = "Certbot Renew and Auto-Update Task", "Certbot Renew Task"
|
|
|
|
foreach ($task in $tasks) {
|
|
$exists = Get-ScheduledTask | Where-Object { $_.TaskName -like $task }
|
|
if ($exists)
|
|
{
|
|
Unregister-ScheduledTask -TaskName $task -Confirm:$false
|
|
}
|
|
}
|