More of a question then a problem
Posted: Wed Feb 19, 2014 5:55 am
Firstly we have InstallAware Studio Admin version at my company (ifs)
I have created and batch file(please see below) which checks whether the system is 32bit or 64bit then installs the relevant msi with answer file. i would like to wrap this all up into one EXE or msi and make it available for my users to download.
My question.
can this be done with InstallAware Studio admin?
and is it easy to do?
Batch file script:
if %PROCESSOR_ARCHITECTURE%==x86 (
msiexec -i %TEMP%\jpulse\JunosPulse.x86.msi CONFIGFILE=%TEMP%\jpulse\Ifs_config.jnprpreconfig ADDLOCAL=PulseSA,SAHostChecker -qn
) else (
msiexec -i %TEMP%\jpulse\JunosPulse.x64.msi CONFIGFILE=%TEMP%\jpulse\Ifs_config.jnprpreconfig ADDLOCAL=PulseSA,SAHostChecker -qn
)
Thank you in advance for your input.
James
I have created and batch file(please see below) which checks whether the system is 32bit or 64bit then installs the relevant msi with answer file. i would like to wrap this all up into one EXE or msi and make it available for my users to download.
My question.
can this be done with InstallAware Studio admin?
and is it easy to do?
Batch file script:
if %PROCESSOR_ARCHITECTURE%==x86 (
msiexec -i %TEMP%\jpulse\JunosPulse.x86.msi CONFIGFILE=%TEMP%\jpulse\Ifs_config.jnprpreconfig ADDLOCAL=PulseSA,SAHostChecker -qn
) else (
msiexec -i %TEMP%\jpulse\JunosPulse.x64.msi CONFIGFILE=%TEMP%\jpulse\Ifs_config.jnprpreconfig ADDLOCAL=PulseSA,SAHostChecker -qn
)
Thank you in advance for your input.
James