Does anyone know much about how to activate Windows apps to start automatically on boot up?
2 issues:
Since today, for some reason Discord does not auto-start any more. It is set to start in the app itself and has always worked before.
I wanted to set Active Sky FS to start automatically. There is no option in the app itself, but I added a shortcut in the shell:startup “folder” (see my image) but it does not work. Weirdly the task manager shows that it should be loaded, but it’s not until I double-click the icon on my desktop.
Alright, so I managed to fix one part of this puzzle. It was my fault in being too keen disabling Start-up Apps trying to debloat Windows a bit the other day.
For Discord, it’s actually an app named “Update” (but with the Discord icon) that need to run to launch the app automatically.
But still Active Sky is not working. Does this setup look correct? Weird thing is even if I right-click the task there and “Run”, it does nothing. Is it because the app is with the Administrator shield?
I’ve been trying for hours to get Task Scheduler to work with programs whose shortcut shows the shield. I would think that doing this would make it work, but it changes nothing.
I don’t know anything about scripting in Powershell (which may be the only answer) so I’m stuck.
Sorry, Bud… I tried. I’m not giving up, because this topic is useful.
It is, I mean the same shortcut works to start the app manually, but I must accept the Administrator prompt. Must be something to do with that blocking it.
In the General tab, make sure the user account you specify has administrator privileges
In the Actions tab, try setting the parameters as follows:
Action: Start a Program
Program/script: cmd.exe
Add Arguments: /C start /B AS_FS.exe
Start in: D:\MSFS Apps\AS_FS
this uses a command prompt to start the app.
The /C switch orders cmd.exe to carry out the command specified (in this case, “start”) and then terminate.
“start” Starts a separate window to run AS_FS.exe
the /B switch starts AS_FS.exe without creating a new window.