4 lines
217 B
PowerShell
4 lines
217 B
PowerShell
#Requires -RunAsAdministrator
|
|
Unregister-ScheduledTask -TaskName 'LoginSiteDashboard' -Confirm:$false -ErrorAction SilentlyContinue
|
|
Write-Host "Removed task LoginSiteDashboard (if it existed)." -ForegroundColor Green
|