This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- setup failing before UI sequence
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎May 19, 2008
02:50 PM
setup failing before UI sequence
I have a project where in my initial test build, the setup failed before I ever even go to the UI sequence. When I checked the logs, I found this:
MSI (c) (A0:F0) [15:28:59:617]: Connected to service for CA interface.
MSI (c) (A0!1C) [15:28:59:883]: Note: 1: 2205 2: 3: ISSQLConnection
MSI (c) (A0!1C) [15:28:59:883]: Note: 1: 2228 2: 3: ISSQLConnection 4: Select * FROM `ISSQLConnection` ORDER BY `Order`
MSI (c) (A0!1C) [15:28:59:883]: Note: 1: 2205 2: 3: ISSQLConnection
MSI (c) (A0!1C) [15:28:59:883]: Note: 1: 2228 2: 3: ISSQLConnection 4: Select * FROM `ISSQLConnection` ORDER BY `Order`
Action ended 15:28:59: ISSQLServerInitialize. Return value 3.
MSI (c) (A0:8C) [15:28:59:883]: Doing action: SetupCompleteError
Action 15:28:59: SetupCompleteError.
Action start 15:28:59: SetupCompleteError.
This is essentially a new installer. I captured a package based on a legacy installer, and have made some minor edits, but that's about it. I tried doing a search for information on what ISSQLServerInitialize does, but didn't uncover anything.
Anyone know what's wrong?
Many thanks,
M
MSI (c) (A0:F0) [15:28:59:617]: Connected to service for CA interface.
MSI (c) (A0!1C) [15:28:59:883]: Note: 1: 2205 2: 3: ISSQLConnection
MSI (c) (A0!1C) [15:28:59:883]: Note: 1: 2228 2: 3: ISSQLConnection 4: Select * FROM `ISSQLConnection` ORDER BY `Order`
MSI (c) (A0!1C) [15:28:59:883]: Note: 1: 2205 2: 3: ISSQLConnection
MSI (c) (A0!1C) [15:28:59:883]: Note: 1: 2228 2: 3: ISSQLConnection 4: Select * FROM `ISSQLConnection` ORDER BY `Order`
Action ended 15:28:59: ISSQLServerInitialize. Return value 3.
MSI (c) (A0:8C) [15:28:59:883]: Doing action: SetupCompleteError
Action 15:28:59: SetupCompleteError.
Action start 15:28:59: SetupCompleteError.
This is essentially a new installer. I captured a package based on a legacy installer, and have made some minor edits, but that's about it. I tried doing a search for information on what ISSQLServerInitialize does, but didn't uncover anything.
Anyone know what's wrong?
Many thanks,
M
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎May 20, 2008
10:37 AM
The 2205 indicates the listed table (ISSQLConnection) does not exist (look it up with Windows Installer Error Messages, and scan for 2205). It sounds like somehow your project got into a state where it had the SQL support, but no data to work with it. To return to the default state you could try adding and then removing a SQL connection, or backing up your project, going to the custom actions view, and using right click to show all actions so you can delete the SQL related actions.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎May 20, 2008
10:42 AM
Yes, I tried removing the action that was doing this, and broke it even worse. So I just started the project over... unfortunately.