I would appreciate if someone could tell me that what do I have to do to add MSXML4 in to my setup.
I have extracted msxml.msm -file from web, but what do I have to do with it? Or can I use the .cab -file?
Thanks,
Paivi
Posted 20 February 2002 - 09:39
I would appreciate if someone could tell me that what do I have to do to add MSXML4 in to my setup.
I have extracted msxml.msm -file from web, but what do I have to do with it? Or can I use the .cab -file?
Thanks,
Paivi
Posted 21 February 2002 - 15:38
I recently added MSXML4 to an install. Here's what I'm doing:
// FPS requires MSXML4.0. This is the check.
szFileName = WINSYSDIR ^ "msxml4.dll";
nFileExists = Is (FILE_EXISTS, szFileName);
if ( !nFileExists) then
MessageBox( "The installation has detected this machine does not have
"
+ "MSMXL 4 installed. It will now be installed, answer 'Finish'
"
+ "at the end of the MSMXL 4 installation and the " + @APP_NAME + "
"
+ "installation will continue at that point.", INFORMATION );
if(LaunchAppAndWait( SUPPORTDIR ^ "msxml4.exe", "", WAIT) != 0) then
MessageBox( "MSMXL had problems installing", INFORMATION );
endif;
Then I place the msxml4.exe file in the Setup Files page in InstallShield.
I got the msxml4.exe file from the Microsoft Web Page, since the developer had lost track of how he installed it on his development machine.
Hope this helps.
Becky
Posted 22 February 2002 - 04:27
BTW, you can probably run it silently by including the switches "/q:a". This stands for quiet, administrator mode.