foam_sync.ps1 (LIFEBALANCE) 2025-06-18T23:57:41Z

This commit is contained in:
Ben Miller
2025-06-18 23:57:41 -06:00
parent 147e7cdf8c
commit f51a827fae

View File

@ -56,8 +56,7 @@ $trigger = New-ScheduledTaskTrigger -Once -At (Get-Date) -RepetitionInterval (Ne
$action = New-ScheduledTaskAction -Execute "powershell.exe" -Argument "-NoProfile -NonInteractive -ExecutionPolicy Bypass -File `"$scriptPath`""
# Task settings
$settings = New-ScheduledTaskSettingsSet -AllowStartIfOnBatteries -DontStopIfGoingOnBatteries -ExecutionTimeLimit (New-TimeSpan -Hours 1) `
-StopIfGoingOnBatteries:$false # Explicitly ensure it doesn't stop
$settings = New-ScheduledTaskSettingsSet -ExecutionTimeLimit (New-TimeSpan -Minutes 1)
# Check and configure the scheduled task
try {