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
- :
- Re: How do I install a Microsoft Redistributable (Microsoft Access Database Engine 2010)
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
‎Jul 11, 2016
08:51 AM
How do I install a Microsoft Redistributable (Microsoft Access Database Engine 2010)
Sorry for a newbie question on including redistributables.
I need to install this with my program if it's not already installed: https://www.microsoft.com/en-us/download/details.aspx?id=13255
It's an EXE program (the 32-bit version). I thought I could include it as a Chained MSI, but it's not an MSI file. Can I extract an MSI file from the EXE?
Is there a way to add it to the the list of Application Data, Redistributables? If so, how?
Or should I just run it after my app installs by including it as another file that's part of my installation?
Just confused where/how I should be doing this. Thanks.
I need to install this with my program if it's not already installed: https://www.microsoft.com/en-us/download/details.aspx?id=13255
It's an EXE program (the 32-bit version). I thought I could include it as a Chained MSI, but it's not an MSI file. Can I extract an MSI file from the EXE?
Is there a way to add it to the the list of Application Data, Redistributables? If so, how?
Or should I just run it after my app installs by including it as another file that's part of my installation?
Just confused where/how I should be doing this. Thanks.
(8) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 11, 2016
11:12 AM
You may want to consider creating your own InstallShield prerequisites, and add them to your projects. Please refer to Designing InstallShield Prerequisites and Other Redistributables as a starting point about creating the custom redistributables.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 11, 2016
11:49 AM
Sorry for my confusion.
Should I be adding this under Features?
One of the help pages mentions a Prerequisites folder under Application Data but I don't see it. Do I need to turn something on to add it? Is it under Redistributables? I couldn't figure out how to add a new Redistributable there.
Should I be adding this under Features?
One of the help pages mentions a Prerequisites folder under Application Data but I don't see it. Do I need to turn something on to add it? Is it under Redistributables? I couldn't figure out how to add a new Redistributable there.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 11, 2016
12:36 PM
If you already have created your own InstallShield prerequisite that installs the Microsoft Access Database Engine 2010 redistributable, and place it in the following location: InstallShield Program Files Folder\SetupPrerequisites, it should be listed in the Redistributables view under the Application Data section of the InstallShield IDE.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 11, 2016
02:24 PM
That sounds promising. Can I just put the Microsoft EXE file in there or do I need to prep it in some way with InstallShield? Thanks for your help.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 11, 2016
03:35 PM
You need to create your own InstallShield prerequisite (.prq) that will launch the Microsoft EXE file. For information on configuring the settings for the InstallShield prerequisites that are available in InstallShield, as well as details on how to create your own InstallShield prerequisites, see Defining InstallShield Prerequisites.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 11, 2016
03:53 PM
Thanks. I've created a prerequisite pointing to the EXE file I want to include and have discovered that it basically points to the file for someone to download.
I'd like to be able to bundle it inside the SETUP.EXE program that I'm building with InstallShield. Is that possible?
I don't want people downloading multiple files.
I'd like to be able to bundle it inside the SETUP.EXE program that I'm building with InstallShield. Is that possible?
I don't want people downloading multiple files.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 11, 2016
06:19 PM
I think I figured this out by adding the setup program as a Support Files/Billboard, then running it in the OnFirstUIAfter event. Is that right?
Is there a way to tell if a DLL is installed properly? I'd like to test a DLL value and if it doesn't exists or is an old value, then run this setup program. Thanks again.
Is there a way to tell if a DLL is installed properly? I'd like to test a DLL value and if it doesn't exists or is an old value, then run this setup program. Thanks again.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 12, 2016
11:52 AM
Figured it out with the USEDLL command. All working now. Thanks!