Right then

Basically the below code worked when run from a command line
//..//..//setup.exe RUNFROMEXE=1

this works fine

However i need this done automaticaly when the end user runs the setup.exe
from a GUI

Below is the code to the bootstrapper that im using and any help on the
argument code and where to put it would be very welcome

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003";>
  <PropertyGroup>
   
<AppFileFullPath>C:\Projects\BuildStuff\Installer\Optisoft.msi</AppFileFullPath>
  </PropertyGroup>

  <ItemGroup>
    <BootstrapperFile Include="Microsoft.Net.Framework.2.0">
      <ProductName>.NET Framework 2.0</ProductName>
    </BootstrapperFile>
    <BootstrapperFile Include="Microsoft.Data.Access.Components.2.8">
      <ProductName>Microsoft Data Access Components 2.8</ProductName>
    </BootstrapperFile>
    <BootstrapperFile Include="Microsoft.Windows.Installer.3.1">
      <ProductName>Windows Installer 3.1</ProductName>
    </BootstrapperFile>
    <BootstrapperFile Include="MSJet35">
      <ProductName>MSJet35</ProductName>
    </BootstrapperFile>
    <BootstrapperFile Include="VB6Runtime">
      <ProductName>VB6Runtime</ProductName>
    </BootstrapperFile>
  </ItemGroup>
  <Target Name="Bootstrapper">
        
    <GenerateBootstrapper ApplicationFile="optisoft.msi"
        ApplicationName="Optisoft Enteprise" 
        BootstrapperItems="@(BootstrapperFile)" 
        ComponentsLocation="Relative" 
        Culture="en" 
        FallbackCulture="en-GB" 
        CopyComponents="True" 
        Validate="False" 
        OutputPath="C:\Projects\BuildStuff\Installer\Bootstrapper\output\" 
        />
  </Target>
</Project>


Thanks
-- 
View this message in context: 
http://www.nabble.com/Make-User-Run-exe-when-the-msi-is-run-tf4383058.html#a12519635
Sent from the wix-users mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to