Files

5 lines
208 B
PowerShell
Raw Permalink Normal View History

2026-08-22 22:28:41 +08:00
# 卸载 MyBlog IP 白名单定时任务
$ErrorActionPreference = "Stop"
& schtasks /Delete /F /TN "MyBlogIPWatch" | Out-Null
if ($LASTEXITCODE -eq 0) { Write-Host "计划任务 MyBlogIPWatch 已删除" }