15

I'd like to delay the launch of some startup apps to give it some time to load the other ones before the one I want.

Brian
  • 601

6 Answers6

18

The Task Scheduler in the newer versions of Windows has got quite an overhaul. One of its improvements is to delay start a task. Simply set it to execute your 'apps' ON LOGON with different delays.

Rob
  • 246
8

Startup Delayer

Startup Delayer is a free program tha allows you to configure which programs to start first and which ones to delay when your computer is rebooted. You can set a custom delay for each one, even drag the visual display graph which shows you exactly how your programs are starting and allows you to easily modify the order or adjust delay times.

4

Type Windows + R

Your run dialog pops up.

Enter: services.msc

Find your service that you want to delay

Right click on it, select Properties

Under Startup type: select Automatic (Delayed Start)

There you go.

2

I needed to delay for 1min some application at PC startup after the network connection...

I used standard build in Windows Task scheduler.

Its simply- create task, and fill up all necessary pages - General, Triggers, Actions, Settings.

idx
  • 29
1

And if you want to do it the good ol MS DOS way create a start.bat file in C:\ with

rem launching Thunderbird and Skype in 44 seconds
ping 1.1.1.1 -n 1 -w 44000 > nul
cd "C:\Program Files (x86)\Mozilla Thunderbird"
start thunderbird.exe
ping 1.1.1.1 -n 1 -w 78000 > nul
start "C:\Program Files (x86)\Skype\Phone\" Skype.exe /min

Then create a shortcut to it and put the shortcut into the

c:\Users\Brian\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup

folder

DavidPostill
  • 162,382
1

Leverage windows task scheduler, screenshot shows delay option you need

  1. Create a task in the scheduler
  2. Go to the Triggers tab and click New
  3. Set Begin the task to At log on
  4. Check Delay task for and enter anything between seconds to hours

windows task scheduler

K_Rol
  • 277