vote up 4 vote down star
1

Using Visual Studio 2008 to create an msi to deploy my program with a setup project. I need to know how to make the msi run the exe it just installed. A custom action? If so please explain where/how. Thanks.

flag

60% accept rate

5 Answers

vote up 6 vote down check

This is a common question. I don't do it with a custom action. The only way I know, is to modify the .msi after it has been generated. I run a Javascript script as a post-build event to do exactly that. It inserts a new dialog in the installer wizard, with a checkbox that says "Launch Application Foo?".

It appears as the last screen in the install Wizard sequence. Looks like this:

alt text


// EnableLaunchApplication.js <msi-file>
// Performs a post-build fixup of an msi to launch a specific file when the install has completed


// Configurable values
var checkboxChecked = true;                     // Is the checkbox on the finished dialog checked by default?
var checkboxText = "Launch [ProductName]";      // Text for the checkbox on the finished dialog
var filename = "WindowsApplication1.exe";       // The name of the executable to launch - change this to match the file you want to launch at the end of your setup


// Constant values from Windows Installer
var msiOpenDatabaseModeTransact = 1;

var msiViewModifyInsert         = 1
var msiViewModifyUpdate         = 2
var msiViewModifyAssign         = 3
var msiViewModifyReplace        = 4
var msiViewModifyDelete         = 6



if (WScript.Arguments.Length != 1)
{
        WScript.StdErr.WriteLine(WScript.ScriptName + " file");
        WScript.Quit(1);
}

var filespec = WScript.Arguments(0);
var installer = WScript.CreateObject("WindowsInstaller.Installer");
var database = installer.OpenDatabase(filespec, msiOpenDatabaseModeTransact);

var sql
var view
var record

try
{
        var fileId = FindFileIdentifier(database, filename);
        if (!fileId)
                throw "Unable to find '" + filename + "' in File table";


        WScript.Echo("Updating the Control table...");
        // Modify the Control_Next of BannerBmp control to point to the new CheckBox
        sql = "SELECT `Dialog_`, `Control`, `Type`, `X`, `Y`, `Width`, `Height`, `Attributes`, `Property`, `Text`, `Control_Next`, `Help` FROM `Control` WHERE `Dialog_`='FinishedForm' AND `Control`='BannerBmp'";
        view = database.OpenView(sql);
        view.Execute();
        record = view.Fetch();
        record.StringData(11) = "CheckboxLaunch";
        view.Modify(msiViewModifyReplace, record);
        view.Close();

        // Insert the new CheckBox control
        sql = "INSERT INTO `Control` (`Dialog_`, `Control`, `Type`, `X`, `Y`, `Width`, `Height`, `Attributes`, `Property`, `Text`, `Control_Next`, `Help`) VALUES ('FinishedForm', 'CheckboxLaunch', 'CheckBox', '18', '117', '343', '12', '3', 'LAUNCHAPP', '{\\VSI_MS_Sans_Serif13.0_0_0}" + checkboxText + "', 'CloseButton', '|')";
        view = database.OpenView(sql);
        view.Execute();
        view.Close();



        WScript.Echo("Updating the ControlEvent table...");
        // Modify the Order of the EndDialog event of the FinishedForm to 1
        sql = "SELECT `Dialog_`, `Control_`, `Event`, `Argument`, `Condition`, `Ordering` FROM `ControlEvent` WHERE `Dialog_`='FinishedForm' AND `Event`='EndDialog'";
        view = database.OpenView(sql);
        view.Execute();
        record = view.Fetch();
        record.IntegerData(6) = 1;
        view.Modify(msiViewModifyReplace, record);
        view.Close();

        // Insert the Event to launch the application
        sql = "INSERT INTO `ControlEvent` (`Dialog_`, `Control_`, `Event`, `Argument`, `Condition`, `Ordering`) VALUES ('FinishedForm', 'CloseButton', 'DoAction', 'VSDCA_Launch', 'LAUNCHAPP=1', '0')";
        view = database.OpenView(sql);
        view.Execute();
        view.Close();



        WScript.Echo("Updating the CustomAction table...");
        // Insert the custom action to launch the application when finished
        sql = "INSERT INTO `CustomAction` (`Action`, `Type`, `Source`, `Target`) VALUES ('VSDCA_Launch', '210', '" + fileId + "', '')";
        view = database.OpenView(sql);
        view.Execute();
        view.Close();



        if (checkboxChecked)
        {
                WScript.Echo("Updating the Property table...");
                // Set the default value of the CheckBox
                sql = "INSERT INTO `Property` (`Property`, `Value`) VALUES ('LAUNCHAPP', '1')";
                view = database.OpenView(sql);
                view.Execute();
                view.Close();
        }



        database.Commit();
}
catch(e)
{
        WScript.StdErr.WriteLine(e);
        WScript.Quit(1);
}



function FindFileIdentifier(database, fileName)
{
        var sql
        var view
        var record

        // First, try to find the exact file name
        sql = "SELECT `File` FROM `File` WHERE `FileName`='" + fileName + "'";
        view = database.OpenView(sql);
        view.Execute();
        record = view.Fetch();
        if (record)
        {
                var value = record.StringData(1);
                view.Close();
                return value;
        }
        view.Close();

        // The file may be in SFN|LFN format.  Look for a filename in this case next
        sql = "SELECT `File`, `FileName` FROM `File`";
        view = database.OpenView(sql);
        view.Execute();
        record = view.Fetch();
        while (record)
        {
                if (StringEndsWith(record.StringData(2), "|" + fileName))
                {
                        var value = record.StringData(1);
                        view.Close();
                        return value;
                }

                record = view.Fetch();
        }
        view.Close();

}

function StringEndsWith(str, value)
{
        if (str.length < value.length)
                return false;

        return (str.indexOf(value, str.length - value.length) != -1);
}

Save that Javascript file to the project directory (same dir as contains .vdproj), name it ModifyMsiToEnableLaunchApplication.js . For each unique setup project, you need to modify that script and put the proper exe name into it. And then, you need to set the post-build event in the Setup project to be this:

cscript.exe \"$(ProjectDir)ModifyMsiToEnableLaunchApplication.js\" \"$(BuiltOuputPath)\"

That oughtta do it.

link|flag
Wow Cheeso... nice script – Nestor Nov 5 at 19:18
like a little bit of magic. I don't know if MS added the capability into the setup project for VS2010. I think it's also possible to do this in WiX, but I've never used Wix, so this works for me. – Cheeso Nov 5 at 19:22
If the interface is hidden (msi being pushed with silent install commands) will this still work? – Shawn Nov 6 at 15:54
Sure, it will still work. Just keep the checkboxChecked var as true in the script. – Cheeso Nov 6 at 16:56
I'm getting an Error: 'PostBuildEvent' failed with error code '1' 'Unspecified error' – Shawn Nov 19 at 16:17
show 3 more comments
vote up 1 vote down

Yes.. I would write a custom action, and stick it at the end of the InstallExecutionSequence table

link|flag
I don't see an InstallExecutionSequence table? Under custom actions I see Install, Commit, Rollback and uninstall. Would the custom action point to the output of the main program? – Shawn Nov 4 at 15:02
The InstallExecutionSequence table is internal to the MSI and not exposed via Visual Studio. You will need an MSI editor like Orca to edit it. Hand-editing MSIs is not a trivial task. – Dour High Arch Nov 5 at 18:08
I agree - hand-editing MSIs is not easy. Not is it easy or trivial using Orca. You can use the script I provided below to automate the task. Quick and easy, tested and proven. – Cheeso Nov 5 at 19:12
vote up 0 vote down

Thanks for that great script, but i got 2 questions/problems with it:

  1. Is this approach also valid for launching a msi after the setup has completed?
  2. I can't manage to make any file run after setup has completed, simply nothing happens, in Process Mon I see my .exe is tried to be executed, but a "File Locked with only readers" occurs and the .exe is closed afterwards, is there any solution to this? (i use windows vista/windows 7)
link|flag
You might be better off starting a new question. – Shawn Nov 11 at 15:20
vote up 0 vote down

Hi cheeso, Thanks for the scripts.I facing one problem,after successfull install of application,in the final wizard,checkbox gets enabled only after i click on form.it doesnot get enabled automatically @ the end(final wizard).

is ther any thing i m missing.

With regards, mahens

link|flag
vote up 0 vote down

While after using the js, the Checkbox was shown only after i move mouse onto it, why? I'm using VC++, but I don't think it will matter.

another question, how to change to the TargetDIR to run the application? now i do it in the application initialize routine.

link|flag

Your Answer

Get an OpenID
or

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