We have large C# application spanning many projects which is packaged into an .MSI file by running MSBuild (or through Visual Studio 2010) on a .VDProj file. The installation usually works fine, and warns correctly if other required software is not found on the local machine.

However, if the installation is successful, we would like the installer to copy itself to some particular folder in program files. For example 'c:\program files\app\version\install_1.2.3.4.msi'.

Does anyone know of any way of doing this?

Many thanks in advance.

link|improve this question

40% accept rate
Why do you want this? You are aware of the repair feature of Windows Installer, arent you? – erikkallen Feb 24 '11 at 9:30
feedback

1 Answer

up vote 0 down vote accepted

You can get the MSI path from OriginalDatabase property. To copy the MSI you can use a custom action scheduled after InstallFinalize standard action.

For example, you can write a simple EXE which receives [OriginalDatabase] as a parameter and performs the copy operation.

InstallFinalize is not shown in Visual Studio. You can add your custom action under Install and edit the MSI with ORCA to change its sequence after InstallFinalize in InstallExecuteSequence table.

You can get more control over custom actions by using other setup authoring tools like WiX (free) or Advanced Installer (commercial).

link|improve this answer
Hi, thanks for your response. Can you elaborate a bit? I can get to the Custom Actions panel, but all I see are Install, Commit, Rollback and Uninstall section. Where can I find the InstallFinalize standard action? – JamesPD Feb 23 '11 at 16:53
I edited my answer. – Cosmin Pirvu Feb 24 '11 at 8:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.