mirror of
https://github.com/amidaware/tacticalrmm.git
synced 2026-04-26 06:55:52 +03:00
[GH-ISSUE #167] Feature Request: Scheduled Task Time Splay #99
Labels
No labels
In Process
bug
bug
dev-triage
documentation
duplicate
enhancement
fixed
good first issue
help wanted
integration
invalid
pull-request
question
requires agent update
security
ui tweak
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tacticalrmm#99
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @bradhawkins85 on GitHub (Nov 3, 2020).
Original GitHub issue: https://github.com/amidaware/tacticalrmm/issues/167
Originally assigned to: @wh1te909 on GitHub.
Can you please add the ability to spread the bulk/scheduled start time over a specified amount of time.
E.g. Scheduled start time is 1pm and tasks should execute randomly over the next 2 hours.
This would ease possible load issues with APIs and or network bandwidth etc.
E.g. Bulk script/commands to install software via chocolatey will trigger rate limiting thus a splay could help counteract this.
@plaxon commented on GitHub (Nov 3, 2020):
Good point. Chocolatey without a local proxy will likely cause problems with many clients on site, so a random delay would be a good idea.
For Powershell, adding something like
Start-Sleep -Seconds (Get-Random -Minimum 0 -Maximum 90)to the beginning of the script can be a workaround.
@dinger1986 commented on GitHub (Feb 21, 2021):
should merge #177 and this as essentially the same thing
@sadnub commented on GitHub (Jan 10, 2022):
This will be in the next release using windows task scheduler's repetition interval and repetition duration