Windows 10
A Microsoft operating system that runs on personal computers and tablets.
11,685 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
(Eg, i want my bing wall paper app to be run and take resources only if nothing i'm working on needs those resources)
I don't think that you can. The solution that I found was to use the task scheduler to periodically run a Powershell script.
Get-Process -Name notepad | ForEach { $_.PriorityClass = "BelowNormal"} # or use 'Idle'
Set the task to run as the system account and define various triggers like 'logon of any user' or at a specific time every day. You might have to add a Start-Sleep to wait until the exe starts during the user logon process.