mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-09-11 04:38:42 -06:00
12 lines
426 B
PowerShell
12 lines
426 B
PowerShell
param(
|
|
[string]$SupervisorTaskName = 'Borealis Agent - Supervisor'
|
|
)
|
|
|
|
$ErrorActionPreference = 'SilentlyContinue'
|
|
$task = Get-ScheduledTask -TaskName $SupervisorTaskName -ErrorAction SilentlyContinue
|
|
if (-not $task) { exit }
|
|
$st = $task.State
|
|
if ($st -eq 'Disabled') { Enable-ScheduledTask -TaskName $SupervisorTaskName | Out-Null }
|
|
if ($st -ne 'Running') { Start-ScheduledTask -TaskName $SupervisorTaskName | Out-Null }
|
|
|