Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- in AHK scripts you can use this if it needs priority above basically everything else (overkill for most situations):
- ProcessSetPriority("High")
- if you add an AHK script as a task to task scheduler, you might want to export the task and then change the XML default priority from value: 7 (below normal) to: 5 (normal), then import it.
- no need to set it to normal in the AHK script itself, because it's normal by default (programs ran by task scheduler sometimes need different priorities but usually below normal is fine).
- don't set any other priority in task scheduler for AHK scripts, b/c those you should set in the AHK scripts directly (for when you open the file directly plus any other situation)
- for non-AHK tasks in task scheduler, you might want this:
- Task Priority Priority Category
- 0 Real-time
- 1 High
- 2-3 Above normal
- 4-6 Normal
- 7-8 Below normal
- 9-10 Idle
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement