I have been having a lot of problems with an app I use all the time. It is set to auto-start (the app is in the Startup folder) and it frequently crashes after it starts. When I start it manually after all apps have loaded, it always starts without problems.<\/p>\n
The app developers have not been able to find the cause.<\/p>\n
I am wondering if another app that starts around the same time is the cause of these crashes. Does anyone know how I can find out when apps and services load after starting up? I would take it out of startup. However, if I do that and forget to start it, then I have to wait for the other computers and mobile devices I have to sync up…<\/p>\n
Thanks very much,<\/p>\n
John<\/p>","upvoteCount":5,"answerCount":5,"datePublished":"2025-07-06T19:24:11.227Z","author":{"@type":"Person","name":"johnm243","url":"https://community.spiceworks.com/u/johnm243"},"suggestedAnswer":[{"@type":"Answer","text":"
I have been having a lot of problems with an app I use all the time. It is set to auto-start (the app is in the Startup folder) and it frequently crashes after it starts. When I start it manually after all apps have loaded, it always starts without problems.<\/p>\n
The app developers have not been able to find the cause.<\/p>\n
I am wondering if another app that starts around the same time is the cause of these crashes. Does anyone know how I can find out when apps and services load after starting up? I would take it out of startup. However, if I do that and forget to start it, then I have to wait for the other computers and mobile devices I have to sync up…<\/p>\n
Thanks very much,<\/p>\n
John<\/p>","upvoteCount":5,"datePublished":"2025-07-06T19:24:11.282Z","url":"https://community.spiceworks.com/t/app-and-service-start-times-after-computer-restart/1221395/1","author":{"@type":"Person","name":"johnm243","url":"https://community.spiceworks.com/u/johnm243"}},{"@type":"Answer","text":"
What is this app?<\/p>\n
What is logged in event logs for the reason it crashes?<\/p>\n
What Os are you running it on and instead of using start-up, can it run as a service?<\/p>\n
You could always have a script that is scheduled to run at login, delay the application running for 5 minutes to give the other processes time to start.<\/p>\n
The startup folder isn’t the only way to automatically start something.<\/p>","upvoteCount":1,"datePublished":"2025-07-06T19:42:41.440Z","url":"https://community.spiceworks.com/t/app-and-service-start-times-after-computer-restart/1221395/2","author":{"@type":"Person","name":"Rod-IT","url":"https://community.spiceworks.com/u/Rod-IT"}},{"@type":"Answer","text":"\n\n
<\/div>\n
JohnM243:<\/div>\n
\nI have been having a lot of problems with an app I use all the time. It is set to auto-start (the app is in the Startup folder) and it frequently crashes after it starts. When I start it manually after all apps have loaded, it always starts without problems.<\/p>\n
The app developers have not been able to find the cause.<\/p>\n
I am wondering if another app that starts around the same time is the cause of these crashes. Does anyone know how I can find out when apps and services load after starting up? I would take it out of startup. However, if I do that and forget to start it, then I have to wait for the other computers and mobile devices I have to sync up…<\/p>\n
Thanks very much,<\/p>\n
John<\/p>\n<\/blockquote>\n<\/aside>\n
Hey John, if you’re thinking of delaying the app startup instead of removing it entirely, that’s actually a smart move. You can use Windows Task Scheduler to launch the app a couple of minutes after you log in<\/strong>, giving everything else time to load first. That usually helps when a program crashes because it’s trying to start too early.<\/p>\nHere’s a simple PowerShell script you can use to create that delayed startup task:<\/p>\n
powershell<\/p>\n
CopyEdit<\/p>\n
# Edit this line with the full path to your app:\n$appPath = \"C:\\Path\\To\\YourApp.exe\" \n\n$taskName = \"DelayedAppStartup\"\n$delayMinutes = 2 # Change this if you want a longer delay\n\n$delaySeconds = $delayMinutes * 60\n\n$action = New-ScheduledTaskAction -Execute $appPath\n$trigger = New-ScheduledTaskTrigger -AtLogOn -Delay (New-TimeSpan -Seconds $delaySeconds)\n$settings = New-ScheduledTaskSettingsSet -AllowStartIfOnBatteries -StartWhenAvailable\n\nRegister-ScheduledTask -Action $action -Trigger $trigger -TaskName $taskName `\n -Settings $settings -Description \"Launch app with delay after user logon\" `\n -User \"$env:USERNAME\" -RunLevel Highest -Force\n\nWrite-Host \"Scheduled task created to launch your app $delayMinutes minutes after login.\"\n<\/code><\/pre>\nJust replace the file path with the one for your app. Run PowerShell as Administrator when you do this. It’ll create a scheduled task that waits a couple of minutes after login before launching the app.<\/p>\n
If you ever want to remove the task, this command will clean it up:<\/p>\n
powershell<\/p>\n
CopyEdit<\/p>\n
Unregister-ScheduledTask -TaskName \"DelayedAppStartup\" -Confirm:$false\n<\/code><\/pre>","upvoteCount":2,"datePublished":"2025-07-06T20:24:23.777Z","url":"https://community.spiceworks.com/t/app-and-service-start-times-after-computer-restart/1221395/3","author":{"@type":"Person","name":"h453","url":"https://community.spiceworks.com/u/h453"}},{"@type":"Answer","text":"disable all startup apps<\/strong><\/p>","upvoteCount":1,"datePublished":"2025-07-08T06:52:04.074Z","url":"https://community.spiceworks.com/t/app-and-service-start-times-after-computer-restart/1221395/4","author":{"@type":"Person","name":"admin-omar","url":"https://community.spiceworks.com/u/admin-omar"}},{"@type":"Answer","text":"If your app crashes during startup but works fine when started manually, it may be launching too early—before required services or other apps are ready. First, check the Event Viewer (eventvwr.msc) under Windows Logs > Application to see when and why the app crashes. To fix it, you can delay the app’s startup using Task Scheduler: create a task that runs the app at logon, and set a delay of 30 to 90 seconds. Then remove the app from the Startup folder. \nYou can also check for conflicts by disabling other startup apps in Task Manager, restarting, and re-enabling them one by one to identify the problem. If you’re testing and don’t want to forget to start the app, set a reminder using Task Scheduler or a sticky note at login. This approach gives the system time to load everything else before your app runs, which may prevent the crash.<\/p>","upvoteCount":1,"datePublished":"2025-07-21T11:45:54.446Z","url":"https://community.spiceworks.com/t/app-and-service-start-times-after-computer-restart/1221395/5","author":{"@type":"Person","name":"afroz-stellar","url":"https://community.spiceworks.com/u/afroz-stellar"}}]}}
johnm243
(JohnM243)
July 6, 2025, 7:24pm
1
I have been having a lot of problems with an app I use all the time. It is set to auto-start (the app is in the Startup folder) and it frequently crashes after it starts. When I start it manually after all apps have loaded, it always starts without problems.
The app developers have not been able to find the cause.
I am wondering if another app that starts around the same time is the cause of these crashes. Does anyone know how I can find out when apps and services load after starting up? I would take it out of startup. However, if I do that and forget to start it, then I have to wait for the other computers and mobile devices I have to sync up…
Thanks very much,
John
5 Spice ups
Rod-IT
(Rod-IT)
July 6, 2025, 7:42pm
2
What is this app?
What is logged in event logs for the reason it crashes?
What Os are you running it on and instead of using start-up, can it run as a service?
You could always have a script that is scheduled to run at login, delay the application running for 5 minutes to give the other processes time to start.
The startup folder isn’t the only way to automatically start something.
1 Spice up
h453
(h453)
July 6, 2025, 8:24pm
3
JohnM243:
I have been having a lot of problems with an app I use all the time. It is set to auto-start (the app is in the Startup folder) and it frequently crashes after it starts. When I start it manually after all apps have loaded, it always starts without problems.
The app developers have not been able to find the cause.
I am wondering if another app that starts around the same time is the cause of these crashes. Does anyone know how I can find out when apps and services load after starting up? I would take it out of startup. However, if I do that and forget to start it, then I have to wait for the other computers and mobile devices I have to sync up…
Thanks very much,
John
Hey John, if you’re thinking of delaying the app startup instead of removing it entirely, that’s actually a smart move. You can use Windows Task Scheduler to launch the app a couple of minutes after you log in , giving everything else time to load first. That usually helps when a program crashes because it’s trying to start too early.
Here’s a simple PowerShell script you can use to create that delayed startup task:
powershell
CopyEdit
# Edit this line with the full path to your app:
$appPath = "C:\Path\To\YourApp.exe"
$taskName = "DelayedAppStartup"
$delayMinutes = 2 # Change this if you want a longer delay
$delaySeconds = $delayMinutes * 60
$action = New-ScheduledTaskAction -Execute $appPath
$trigger = New-ScheduledTaskTrigger -AtLogOn -Delay (New-TimeSpan -Seconds $delaySeconds)
$settings = New-ScheduledTaskSettingsSet -AllowStartIfOnBatteries -StartWhenAvailable
Register-ScheduledTask -Action $action -Trigger $trigger -TaskName $taskName `
-Settings $settings -Description "Launch app with delay after user logon" `
-User "$env:USERNAME" -RunLevel Highest -Force
Write-Host "Scheduled task created to launch your app $delayMinutes minutes after login."
Just replace the file path with the one for your app. Run PowerShell as Administrator when you do this. It’ll create a scheduled task that waits a couple of minutes after login before launching the app.
If you ever want to remove the task, this command will clean it up:
powershell
CopyEdit
Unregister-ScheduledTask -TaskName "DelayedAppStartup" -Confirm:$false
2 Spice ups
admin-omar
(admin omar 2025)
July 8, 2025, 6:52am
4
1 Spice up
If your app crashes during startup but works fine when started manually, it may be launching too early—before required services or other apps are ready. First, check the Event Viewer (eventvwr.msc) under Windows Logs > Application to see when and why the app crashes. To fix it, you can delay the app’s startup using Task Scheduler: create a task that runs the app at logon, and set a delay of 30 to 90 seconds. Then remove the app from the Startup folder.
You can also check for conflicts by disabling other startup apps in Task Manager, restarting, and re-enabling them one by one to identify the problem. If you’re testing and don’t want to forget to start the app, set a reminder using Task Scheduler or a sticky note at login. This approach gives the system time to load everything else before your app runs, which may prevent the crash.
1 Spice up