how to delay invocation of the program in Startup group by N seconds?

V

viki

What is simple way to delay invocation of the program in Startup group
(Start->Programs->Startup) by N seconds after login ? I am not talking
about
delaying all Startup program by N, but separate N per program. Let's
say
I want to space execution of my Startup items by 30 seconds from each
other,
rather then firing all simultaneously.

Anything builtin/registry, or some simple free utility ?

Thanks
Viki
 
P

Pegasus \(MVP\)

viki said:
What is simple way to delay invocation of the program in Startup group
(Start->Programs->Startup) by N seconds after login ? I am not talking
about
delaying all Startup program by N, but separate N per program. Let's
say
I want to space execution of my Startup items by 30 seconds from each
other,
rather then firing all simultaneously.

Anything builtin/registry, or some simple free utility ?

Thanks
Viki

Instead of invoking program xxx directly, invoke it from
within a batch file that you place into the startup folder:
@echo off
ping localhost -n 60 > nul
"c:\program files\Some Folder\xxx.exe"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top