Windows Installer Wizard Wrapper
- Popular Alternatives to MSI Wrapper for Windows, Software as a Service (SaaS). Converts executable installers to MSI packages Created by Jacob Reinholdt.
- It is possible to use virtualenv wrapper under MSYS with a native Windows Python installation. In order to make it work, you need to define an extra environment variable named MSYSHOME containing the root path to the MSYS installation.
After way too many experiments, I've come to the conclusion that Windows Installer is simply bad technology. But the customers want MSI files.
Windows Installer Wrapper Wizard. Computing » Software. Add to My List Edit this Entry Rate it: (4.63 / 8 votes) Translation Find a translation for Windows Installer.
So, how can I create an MSI file that extracts an EXE file to a temporary directory and runs it with options same or similar as were passed to the EXE file?
Options to an MSI are explained in Msiexec (command-line options) (low level 'run' of an MSI is msiexec option package.msi).
EDIT: mjmarsh's WiX solution looks like it works. I just haven't had a chance to try it yet (crunch time). If it works, I'll be accepting it.
EDIT: it does not work. Missing piece: attended/unattended does not seem to be available.
Anyway, the only to make this work at all would be for the custom action to kill its parent process!
EDIT: So somebody posted as a further answer wrapping the whole thing as a post-install custom action. Theoretically possible but since a reboot may be required (thanks MS for .NET 4 requiring a reboot sometimes) we have to do further hackery. So from the matrix of advantages:
No point.
Stein Åsmul13 Answers
Well, there is the free way and the $$$ way. I cannot document everything here, but this should get you started.
On a side note, yes, Windows Installer is a maddening technology. There are many times where I think a task will be straightforward, but it actually becomes complicated. You definitely have to immerse yourself to understand it.
In any case, here goes:
Free: WiX (here)
This is a free tool to generate MSI files from a set of XML configuration files. I'll leave you to find tutorials online, but here is the crux:
You can compress your EXE into the installer by using the following tag in the WXS file:
Then you can create a custom action which launches your EXE file:
Then you insert your custom action into the InstallExecuteSequence
in the appropriate spot (I almost always run mine somewhere between InstallInitialize
and InstallFinalize
)
Homescapes mod apk for pc. $$$: Get InstallShield (HERE)
First create a 'Basic MSI' project and make sure you say you want no setup.exe generated. You set this in the Release settings.
Then you essentially do the same thing as with WiX, but you have a UI for it.
- You can specify your helper EXE file by using the Direct Editor and putting your EXE file in the 'Binary' table
- You can create a custom action to launch that EXE file from the 'Custom Actions' Node in the tree on the left
- You can insert the custom action by selecting 'Install Sequences' and putting it in the
InstallExecuteSequence
somewhere betweenInstallInitialize
andInstallFinalize
as I said before.
Sorry, I could not be more detailed, but this should be a good start.
ElliottI think the easiest way to create a .MSI file is to use WiX.
Lesson 1 from the WiX tutorial is all you need to create a simple install.
Peter MortensenJoshua, I understand your frustration very well. MSI is quirky to say the least - a completely new way to think of deployment. Still, applied correctly MSI offers the best possible deployment, especially for corporate customers.
What operations does your installer EXE perform? Is it largely file copy, some COM registration and some registry writes, or does it run complex installation logic, setting up databases etc..? The reason I ask is because it probably would be very quick to create a well functioning WIX MSI for you so you can abandon the EXE approach.
It is indeed possible to run an EXE from inside an MSI, but it requires proper sequencing, and it is guaranteed to cause you more blues than a simple MSI. If the app is small, and not doing anything crazy during installation, I would be happy to provide you with a basic WIX conversion.
No solution. We went NSIS as corporate MSI install is going to be broken anyway due to MSI nesting problem (just try installing EXE wrapping MSI from inside MSI someday).
JoshuaJoshuaThere is also a free version of the MSI Wrapper. It also supports uninstall and upgrades. Also, it only creates one entry in the Add or Remove programs.
Adding to weir's
answer, change the custom action attribute
like below:
Setting Return=asyncNoWai
does not wait for the exe
to return. The installer does it's job and closes normally. Meanwhile, the exe
continous its execution.
-Madhuresh
now he who must not be named.now he who must not be named.If you don't want to manage MSI, but only execute EXE, try Exe to MSI Converter Free. You just put in the path to the EXE and get an MSI.
Andrew Leetry this:
In MSI package, there is a behaviour call 'Launch an application after installation', that means your exe file will be executed after the MSI installation(the MSI is closed).
Try to execute your exe there, so when your exe invoke other MSI packages, it won't conflict with the first one.
Wix can do it. Here is my sample code for wix 3.5:
Stein ÅsmulI was having the same problem (wrap EXE, call other MSI from the EXE including .net setup, etc.), and here is my solution:
I build the setup exe using InstallAware.It has its own MSI Wrapper that wraps the generated EXE with MSI.
It works OK, the EXE can call other MSIs without any problem (including .net setup, other 3rd party setups), but that is because the launching MSI ends ('returns') rights after it launches the setup EXE file, and that way they avoid the MSI limitation of recursive MSI calls.
BUT - some customers (companies) that uses MSI deployment tools, requires the MSI (msiexec) to return (end) only after the setup process ends, and that is a problem with the above solution.
So - to solve this:
There is another MSI Wrapper (exemsi.com) that generates MSI that returns only after the EXE setup ends, but for using that you must use another unique option of InstallAware:
InstallAware has the option to generate the EXE setup using their own native engine, and not based on Windows Installer engine, to avoid MSI recursive limitation.Combine those both, and you have the perfect solution.
Hope this will help someone, although many years passed since this question was first posted.
Windows Wrapper Script Download
I made a simple and free .NET tool to create MSI from exe or folder (it’s using wixsharp and wix)http://legacy.averbouch.biz/free-msi-wrapper
Nah man, just use Inno Setup's wizard. It makes an setup EXE but not an MSI. It's like 5 mins and you'll have a windows installer.
Windows Installer Wizard Wrapper Key
Simply download it, install it, point it to your EXE, and follow the on-screen prompts
JonathanJonathan