We use InstallShield 2008 for our product installation. Product consists of several components. When a component is installed, a batch-file with some post-install routines specific to this component is executed.
The problem: post-install batch files use some environment variables that are set during the installation of the product through InstallScript. But it seems that batch-files can't see immediate changes in registry (and newly created environment variables).
Is there a way to accomplish installation without a system reboot?
Potentially useful information: target system - Windows XP, currently logged in user is in Administrators group.
cmdinherits the caller's environment, namely the Installer's that didn't change. Admittedly, that's a bit poor design for an installer. - Joey