OK thanks, I think I'm getting there <smile>
So, I have my MsiPackage for my download...

      <MsiPackage 
        SourceFile="..\SharedComponents\bin\Release\SharedComponents.msi"
        InstallCondition="(ProductAInstalled) OR (ProductBInstalled)"
       
DownloadUrl="https://mycompany.com/downloads/blahblah/sharedcomponents.msi";
        DisplayName="Shared Components"
        Compressed="no"
        Vital="yes">
      </MsiPackage>

One piece of missing info I cannot find in the documentation, is where to
define the credentials in order to be able to download the file - as it's a
secure download requiring a username & password.
As far as I can see, a nested <MsiProperty> element is used to pass
properties *to* an MSI, not properties used to *download* the msi in the
first place.
Indeed if I add my credentials 
        <MsiProperty Name="userName" Value="myUsername"/>
        <MsiProperty Name="password" Value="myPassword"/> 

burn pops up a dialog requesting the credentials - which in its self is
great, but not what I want it to do.

Where in this element can I store my username and password required to
download the msi package?
Cheers :)



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-create-and-reference-a-custom-pre-requisite-package-tp7584968p7585030.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis & visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to