Apr 02, 2009
12:04 PM
I have an InstallScript MSI project. I get the following error trying to compile: Intel64 or AMD64 must be specified in the template of the Summary Stream. I put Intel64;1033 in the Summary Stream then ran my install. I got an error because the system I am running the install on is NOT a 64 bit system. I've looked at other posts and have checked all the redistributables included in my project and do not see any that are set for a 64-bit system. I checked the Conditions on the prerequisites and removed any conditions that specified a 64-bit system. Here are the redistributables that I have included in my project: Microsoft .NET Framework 2.0 SP1 (IS Prerequisite) Microsoft .NET Framework 3.5 SP1 (IS Prerequisite) Microsoft C Runtime Library 6.0 (merge module) Microsoft C++ Runtime Library 6.0 (merge module) Microsoft C++ Runtime Library I/O 6.0 (merge module) Microsoft Data Access Components (MDAC) 2.8 (IS Prerequisite) Microsoft SQL Server 2005 Express SP2 (IS Prerequisite) Any ideas why I keep getting this error? :confused: Thanks, Sel
... View more
Labels
- Labels:
-
InstallShield 2009
Apr 01, 2009
01:25 PM
Yes, I saw that after I created a prereq. Not sure why I didn't see it before. THANK you!
... View more
Apr 01, 2009
01:04 PM
Thanks! I used the Prerequisite Editor to create a Prerequisite for MDAC2.8 - hopefully that will work. Did add .NET framwork 1.1 in the Releases view. Thanks again.
... View more
Apr 01, 2009
10:35 AM
I have created an InstallScript MSI project in order to include SQL Server 2005 Express in the installation. I also need to include MDAC 2.8. I have that in another project (InstallScript project) but can not seem to get it to appear in the list of objects to select inmy InstallScript MSI project. The object is in the ObjectsPro folder under Program Files\InstallShield\2009. I added that path to the Tools--Options--Merge Modules tab Merge Module Locations (for both current user and all users). I closed InstallShield and relaunched it but still do not see MDAC 2.8 in the list to add to my project. Also I need to include .NET Framework 1.1 for one component. I can do that in an InstallScript project but don't see that in the objects list of my InstallScript MSI project. Thank you. :confused:
... View more
Labels
- Labels:
-
InstallShield 2009
Feb 12, 2009
09:21 AM
Hello again, I am not checking the laaw_parameters.nLaunchResult error and it is returning a 2. I've looked around and have yet to find out what the 2 indicates. Where can I look for descriptions of the numeric error codes? Thanks again.
... View more
Feb 11, 2009
06:59 AM
Hi - thanks for your suggestions, unfortunately they did not work (used WINSYSDIR and /i). The reason I am using "/a" as the second argurment is due to a post I found online about running an msi package on Vista. My InstallScript project runs some 3rd party self-extracting zip files and then a windows installer that someone else wrote. The windows installer throws an error when run on Vista (runs fine on XP) when the exe calls the msi. The post suggested using msiexec to run the msi and said the /a would be necessary due to UAC on Vista. So, what is happening is, I get the MessageBox that tells me GetLastError() returned 0 and the install goes to my next line of. Maybe I am using GetLastError() incorrectly? At the top of my setup.rul file I have prototype number Kernel32.GetLastError() And then just call it with nErrorCode = GetLastError(). I am testing the call on an XP machine before I move the install to the Vista machine. Typing the command in a command window works on Vista just as it does on XP. Thanks so much.
... View more
Feb 10, 2009
02:34 PM
I have an InstallShield 2009 InstallScript project. I have the following code to launch an external .msi program. It does not work. When I call GetLastError it returns 0. When I run the szProgram line ( msiexe /a "c:\temp\setup.msi" )in a command window it works fine. I've tried it with the LongPathToQuote line and without it - same result. strDir = "C:\\temp"; szProgram = "msiexe /a \''" + strDir + "\\setup.msi\""; LongPathToQuote(szProgram, TRUE); if(LaunchAppAndWait(szProgram, "", LAAW_OPTION_USE_SHELLEXECUTE | nWait) < 0) then nErrorCode = GetLastError(); NumToStr(strError, nErrorCode); MessageBox(strError, WARNING); else MessageBoxs("success", OK); endif; Any ideas why this doesn't work from within an InstallScript project? Thanks. :confused:
... View more
Labels
- Labels:
-
InstallShield 2009
Feb 05, 2009
10:52 AM
Sorry this late - did you ever find out how to access file on Disk 1? I just used the filename without a path as the install is running from that same directory (ie. setup.exe is in the same directory as the files on Disk1).
... View more
Jan 27, 2009
01:31 PM
I want to dynamically hide/show (visible = true or false) a bitmap control that is on a user-defined dialog. It is not the bitmap that appears in the top panel on the right. I change that using DialogSetInfo. Is there a way to hide/show a bitmap (or say a text box) control programmatically? I need this ability in an InstallScript project. I tried ENABLE/DISABLE with the control ID but this gave me an error. Thanks! Sel
... View more
Labels
- Labels:
-
InstallShield 2009
Jan 23, 2009
09:49 AM
I have a Windows Installer 3.x Object folder under Program Files\InstallShield\2009\ObjectsPro so why isn't it showing up in the IDE? :confused: Thanks again, Sel
... View more
Jan 23, 2009
09:14 AM
Hello, I have an InstallScript project that had the Windows Installer 3.x Enginer object. I opened the project today and it "is missing". I reran the InstallShieldInstallScriptObjects.exe and made sure the Windows3.x Engine was selected but the object is still missing in my project. Any ideas? This project has been working fine and the windows installer engine has been in it until now. Thank you. 😞
... View more
Labels
- Labels:
-
InstallShield 2009
Jan 19, 2009
11:32 AM
Yes! I created a new script-based dailog with no controls and it does contain a white panel at top so the bitmap displays correctly. The other dialog still contains a gray panel at the top. I suppose I can change my project and use the new dialog with the white top instead of the other one I created with the gray top. I have another dialog I created by cloning the SdAskOptions dialog, renaming it and modifying it. It does not have the white panel at top. Can you help me understand why some would have the white panel at top and others do not? Thank you for your help! Sel (still a little confused) :confused:
... View more
Jan 16, 2009
01:49 PM
Thank you! I created the dialog from the User Interface --> Dialogs --> New Dialog --> New Dialog Wizard --> selected NewScriptBasedDialog then clicked Finish. I then added my controls to that dialog. The bitmap is not a banner. It is just small bitmap, sized 4 KB. It's the bitmap I rename alt.bmp and used DialogSetInfo to display it: DialogSetInfo(DLG_INFO_ALTIMAGE, SUPPORTDIR ^ "alt.bmp", TRUE); It is a bitmap with a white background. The bitmap I use for the left panel is a white bitmap that I named BitmapId_103.bmp and is placed in the InstallShield\2009\Script\Dialogs directory. The white smaller bitmap appears in that panel also on the welcome and finish dialog. is this enough information?
... View more
Jan 16, 2009
07:16 AM
I have still not figured out how to get a custom dialog to match a standard dialog. I posted the question first on 01-08-2009, 11:43 AM and added a screen shot on a subsequent post. I'm still looking for help on this if anyone has any ideas. Thank you. 😞
... View more
Labels
- Labels:
-
InstallShield 2009
Latest posts by selwynreynolds
Subject | Views | Posted |
---|---|---|
1289 | May 06, 2019 04:28 PM | |
1217 | Nov 06, 2014 10:04 AM | |
1883 | Oct 14, 2014 11:56 AM | |
840 | May 02, 2012 07:13 AM | |
1770 | Apr 25, 2012 08:21 AM | |
4663 | Apr 04, 2012 09:39 AM | |
1170 | Feb 15, 2011 07:16 AM | |
4159 | Feb 14, 2011 12:02 PM | |
1371 | Dec 08, 2010 11:00 AM | |
695 | Apr 15, 2010 01:01 PM |
Activity Feed
- Got a Kudo for Installshield 2019 Skin Customization Kit install says "You must first install an InstallShield Prod. May 07, 2019 02:30 AM
- Posted Installshield 2019 Skin Customization Kit install says "You must first install an InstallShield Prod on InstallShield Forum. May 06, 2019 04:28 PM
- Posted Transfer License from dead laptop on InstallShield Forum. Nov 06, 2014 10:04 AM
- Posted License Transfer on InstallShield Forum. Oct 14, 2014 11:56 AM
- Tagged License Transfer on InstallShield Forum. Oct 14, 2014 11:56 AM
- Posted Re: Component not installed on InstallShield Forum. May 02, 2012 07:13 AM
- Posted Component not installed on InstallShield Forum. Apr 25, 2012 08:21 AM
- Posted Not installing to Program Files on Win 7 x64 on InstallShield Forum. Apr 04, 2012 09:39 AM
- Posted Re: Error 1609 - 64bit install on InstallShield Forum. Feb 15, 2011 07:16 AM
- Posted Error 1609 - 64bit install on InstallShield Forum. Feb 14, 2011 12:02 PM
- Posted Upgrading OS of machine running InstallShield 2010 on InstallShield Forum. Dec 08, 2010 11:00 AM
- Posted Re: Files not copied to IISROOTFOLDER on InstallShield Forum. Apr 15, 2010 01:01 PM
- Posted FeatureCompareSizeRequired errorneous return on InstallShield Forum. Apr 07, 2010 06:59 AM
- Posted Files not copied to IISROOTFOLDER on InstallShield Forum. Apr 02, 2010 09:19 AM
- Posted Files not copied to IISROOTFOLDER on InstallAnywhere Forum. Apr 02, 2010 08:55 AM
- Posted Not enough space if COMPLETE selected on InstallShield Forum. Apr 02, 2010 08:40 AM
- Posted Re: MDAC 2.8 object files missing on InstallShield Forum. Feb 04, 2010 10:54 AM
- Posted MDAC 2.8 object files missing on InstallShield Forum. Feb 04, 2010 08:26 AM
- Posted MSI Help on InstallShield Forum. Jan 16, 2010 10:35 AM
- Posted Re: launchappandwait not working on vista on InstallShield Forum. Jan 08, 2010 04:03 PM