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
- :
- Welcome Screen before Prerequisites
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
‎Dec 23, 2009
01:56 PM
Welcome Screen before Prerequisites
Can you have a welcome screen (where the user can cancel, etc.) that has a continue, etc. button that displays BEFORE the prerequisites of .NET and SQL Express are installed? (The prerequisites run silent with only a progress bar)
bob
bob
(4) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Dec 24, 2009
01:44 AM
No the engine is only started after the prerequisites, so there is nowhere to place a dialog.
You could create an application that looks like that and returns differently dependent on whether continue or cancel was chosen. You then schedule it before the other prerequisites and make it required (e.g. if it doesn't return "continue" your setup aborts).
You could create an application that looks like that and returns differently dependent on whether continue or cancel was chosen. You then schedule it before the other prerequisites and make it required (e.g. if it doesn't return "continue" your setup aborts).
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Dec 28, 2009
04:21 PM
Kind of crazy though, cuz one of my prerequisites is .NET so I want to display a window -- using a windows form written in C# but I can't cuz the framework might not be installed yet. 😞 Seems like a major boo boo in installshield to prevent this behavior.
Bob
Bob
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Dec 30, 2009
10:35 AM
You can create an InstallScript Setup that shows a custom dialog and then launches your other setup or even install .NET and then shows your C# dialog then the other setup is launched.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Dec 31, 2009
05:50 PM
With an InstallScript Setup (NO MSI) can you install .NET and SQLServer Expresss NOT as prerequisites...?
What I want my install to do is prompt for a Company Name, and SQL Server, and that's it, I want the rest of the Install to be silent, with just a progress bar and it to install .NET and SQLExpress and then our App.
What I want my install to do is prompt for a Company Name, and SQL Server, and that's it, I want the rest of the Install to be silent, with just a progress bar and it to install .NET and SQLExpress and then our App.