Link to home
Start Free TrialLog in
Avatar of caraf_g
caraf_g

asked on

Installer - W95 v. W98. Reboot?

I've created a setup program for an application we've written. This application requires DCOM95 c.q. DCOM98 when installed on Windows 9x

In Windows 95, the installation runs perfectly. The first time in, the setup program realises that DCOM is missing, installs it, and reboots the PC. After reboot, the PC proceeds with the rest of the installation.

In Windows 98, the first time in, the setup program realises that DCOM is missing, installs it, and reboots the PC.

After reboot, however, the setup is not resumed.

The user has to manually re-start the setup to proceed.

From looking at the install script, it looks like the DCOM installation sets a "Runonce" setting in the registry. So, my guess is that this "Runonce" setting is valid in W95 but not in W98

What gives? Is there any way to make this thing behave in W98?

Thanks

Pino

PS - I don't believe in bad grades. The accepted answer will receive an "A". I'll increase the points for a good answer.
ASKER CERTIFIED SOLUTION
Avatar of dew_associates
dew_associates
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of caraf_g
caraf_g

ASKER

Not quite, but close.

I found that for Windows 98 you need to set the RunOnceEx key. There is info about this in http://support.microsoft.com/support/kb/articles/Q232/5/09.ASP

Thanks - even though you didn't give me the exact answer you pointed me in the right direction.
Actually unless I were sitting next to you, there wouldn't be an exact answer as I can't see how you are implementing its use. This is why I noted that if you needed more info, to ask! Anyway, your on the right course, which is what counts.
Avatar of caraf_g

ASKER

Thanks again.