mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 07:12:54 -04:00
7 lines
189 B
PowerShell
7 lines
189 B
PowerShell
|
|
$taskName = "Certbot Renew Task"
|
||
|
|
|
||
|
|
$exists = Get-ScheduledTask | Where-Object {$_.TaskName -like $taskName}
|
||
|
|
if ($exists) {
|
||
|
|
Unregister-ScheduledTask -TaskName $taskName -Confirm:$false
|
||
|
|
}
|