Application booting order

  • Thread starter Thread starter Huang Sheng-Chi
  • Start date Start date
H

Huang Sheng-Chi

Hi all,
I searched this newsgroup, but didn't see anyone with the
same problem. Our application actuall depends on the boot
order of two or more programs. For example,
application_1.exe must run first before
application_2.exe. In order to start the applications, of
course one can put both of these into the following
registries:

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion
\Run\application_1.exe

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion
\Run\application_2.exe

Q1: However when the OS starts up, which application will
run first, #1 or #2?

Q2: Is there a way to tell the OS (either via regedit or
TD or component designer)which application order we want?

Thanks
 
Hi, Huang Sheng-Chi!
I searched this newsgroup, but didn't see anyone with the

If you don't mind splash on the screen - use just a batch file like:
@echo off
app1.exe
app2.exe

this makes sure that your apps start in a proper way.
 
Thanks. I'll give this a try.
-----Original Message-----
Hi, Huang Sheng-Chi!
the

If you don't mind splash on the screen - use just a batch file like:
@echo off
app1.exe
app2.exe

this makes sure that your apps start in a proper way.

--
Nikolai Vorontsov
Quadrox NV

.
 
Back
Top