I believe they are located based on SDKPath.  In my case, I have multiple 
locations where it could be, depending on what version of the platform sdk is 
installed

  <PropertyGroup>
    <SDK70>$(registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft 
SDKs\Windows\v7.0\@InstallationFolder)</SDK70>
    <SDK70A>$(registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft 
SDKs\Windows\v7.0A\@InstallationFolder)</SDK70A>
    <SDKPath>$(SDK70A)</SDKPath>
    <SDKPath Condition=" '$(SDKPath)' == ''">C:\Program Files\Microsoft 
SDKs\Windows\v6.0A\</SDKPath>
    <!--    <SDKPath Condition=" '$(SDKPath)' == ''">$(SDK70)</SDKPath> -->
  </PropertyGroup>

If you look in the SDK path you should find a bootstrapper directory.  Inside 
that there is a packages directory.  You can of the items present there.  I 
looked, I currently don't have the SP2 version of the bootstrapper (if you 
happen to find it, left me know where; I'd be interested in it as well).

Anyway, there is a product.xml file that you can look in to see what the values 
need to be for the product code, which matches the Include.

My setup is a little different, for example, I install the 4.5 windows 
installer and have this:

    <BootstrapperFile Include="Microsoft.Windows.Installer.4.5">
      <ProductName>Windows Installer 4.5</ProductName>
      <Visible>false</Visible>
      <Install>true</Install>
    </BootstrapperFile

I found that if you did not include Visible, they showed up as broken in the 
solution explorer, even though they work. 

Hope this helps,
John

-----Original Message-----
From: Andreas [mailto:andreassand...@gmx.net] 
Sent: Sunday, October 16, 2011 12:47 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] installing .NET 2.0 including service pack 2

Hello,

using Votive I added a bootstrapper for the .NET framework.

  <ItemGroup>
     <BootstrapperFile Include="Microsoft.Net.Framework.2.0">
       <ProductName>.NET Framework 2.0</ProductName>
     </BootstrapperFile>
     <BootstrapperFile Include="Microsoft.Windows.Installer.3.1">
       <ProductName>Windows Installer 3.1</ProductName>
     </BootstrapperFile>
   </ItemGroup>

* I succeeded to install it but want to install the service pack 2
   of the .NET framework too. What do I have to change for this purpose?
* How does WiX determines the source for this bootstrapper?

Thanks,
Andy


------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure contains a 
definitive record of customers, application performance, security threats, 
fraudulent activity and more. Splunk takes this data and makes sense of it. 
Business sense. IT sense. Common sense.
http://p.sf.net/sfu/splunk-d2d-oct
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure contains a
definitive record of customers, application performance, security
threats, fraudulent activity and more. Splunk takes this data and makes
sense of it. Business sense. IT sense. Common sense.
http://p.sf.net/sfu/splunk-d2d-oct
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to