Hotmail ruined my message! Trying again..
 
Dear All,
I've made quite a few installers and bundles with WiX already, but all of a 
sudden when making a minimal example, I can't seem to get it to work! Please 
can you have a look, I'm sure I must be doing something obviously wrong. This 
is WiX 3.6.2603.0 on WinXP.
 
I've got a wxs to make an empty MSI:
<?xml version='1.0'?>
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
 <Product Id='{4C2E4CA4-F8A9-456D-AD1F-5264D3A2B0F1}' Name='Test Package' 
Language='1033'
          Version='1.0.0.0' Manufacturer='PH' 
UpgradeCode='{4542D2F4-147B-4F37-88F9-2C2FB1347328}' >
  <Package Description='Dummy package'
           Comments='A single file'
           Manufacturer='PH' InstallerVersion='200' Compressed='yes' 
InstallScope="perUser" />
  <Directory Id='TARGETDIR' Name='SourceDir'>
   <Component Id='MyComponent' Guid="{898E4A4A-DF56-45F2-BE76-56CE109BCA82}">
   </Component>
  </Directory>
  <Feature Id='MyFeature' Title='My 1st Feature' Level='1'>
   <ComponentRef Id='MyComponent' />
  </Feature>
 </Product>
</Wix>
 
Then a second wxs to make the bundle:
<?xml version="1.0"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi";>
 <Bundle Version="1.0.0.0" >
  <BootstrapperApplicationRef 
Id="WixStandardBootstrapperApplication.RtfLicense" />
  <Chain>
   <MsiPackage SourceFile="install.msi" Compressed="yes" />
  </Chain>
 </Bundle>
</Wix>
 
And I am building like this:
candle install.wxs
candle bundle.wxs 
light install.wixobj 
light bundle.wixobj -ext WixBalExtension
 
It compiles OK but when I run I get error 0x8007003 (File Not Found) with the 
following log:
[0A94:08FC][2012-02-11T10:02:55]: Burn v3.6.2603.0, path: C:\Documents and 
Settings\peter hull.UKDEEDEV012\My Documents\minimal\bundle.exe, cmdline: '/q 
/log install.txt'
[0A94:08FC][2012-02-11T10:02:55]: Setting string variable 'WixBundleLog' to 
value 'C:\Documents and Settings\peter hull.UKDEEDEV012\My 
Documents\minimal\install.txt'
[0A94:08FC][2012-02-11T10:02:55]: Setting string variable 'WixBundleName' to 
value ''
[0A94:08FC][2012-02-11T10:02:55]: Setting string variable 
'WixBundleOriginalSource' to value 'C:\Documents and Settings\peter 
hull.UKDEEDEV012\My Documents\minimal\bundle.exe'
[0A94:08FC][2012-02-11T10:02:55]: Detect 1 packages
[0A94:08FC][2012-02-11T10:02:55]: Detected package: install.msi, state: Absent, 
cached: No
[0A94:08FC][2012-02-11T10:02:55]: Detect complete, result: 0x0
[0A94:08FC][2012-02-11T10:02:55]: Plan 1 packages, action: Install
[0A94:08FC][2012-02-11T10:02:55]: Setting string variable 
'WixBundleLog_install.msi' to value 'C:\Documents and Settings\peter 
hull.UKDEEDEV012\My Documents\minimal\install_0_install.msi.txt'
[0A94:08FC][2012-02-11T10:02:55]: Setting string variable 
'WixBundleRollbackLog_install.msi' to value 'C:\Documents and Settings\peter 
hull.UKDEEDEV012\My Documents\minimal\install_0_install.msi_rollback.txt'
[0A94:08FC][2012-02-11T10:02:55]: Planned package: install.msi, state: Absent, 
default requested: Present, ba requested: Present, execute: Install, rollback: 
Uninstall, cache: Yes, uncache: No, dependency: Register
[0A94:08FC][2012-02-11T10:02:55]: Plan complete, result: 0x0
[0A94:08FC][2012-02-11T10:02:55]: Apply begin
[0A94:08FC][2012-02-11T10:02:55]: Caching bundle from: 
'C:\DOCUME~1\PETERH~1.UKD\LOCALS~1\Temp\{98c3a113-6f9a-4c5f-a6d3-b1da166bbbe6}\.be\bundle.exe'
 to: 'C:\Documents and Settings\peter hull.UKDEEDEV012\Local 
Settings\Application Data\Package 
Cache\{98c3a113-6f9a-4c5f-a6d3-b1da166bbbe6}\bundle.exe'
[0A94:08FC][2012-02-11T10:02:55]: Error 0x80070003: Failed to cache bundle 
from: 
'C:\DOCUME~1\PETERH~1.UKD\LOCALS~1\Temp\{98c3a113-6f9a-4c5f-a6d3-b1da166bbbe6}\.be\bundle.exe'
 to 'C:\Documents and Settings\peter hull.UKDEEDEV012\Local 
Settings\Application Data\Package 
Cache\{98c3a113-6f9a-4c5f-a6d3-b1da166bbbe6}\bundle.exe'
[0A94:08FC][2012-02-11T10:02:55]: Error 0x80070003: Failed to cache bundle from 
path: 
C:\DOCUME~1\PETERH~1.UKD\LOCALS~1\Temp\{98c3a113-6f9a-4c5f-a6d3-b1da166bbbe6}\.be\bundle.exe
[0A94:08FC][2012-02-11T10:02:55]: Error 0x80070003: Failed to begin 
registration session.
[0A94:08FC][2012-02-11T10:02:55]: Error 0x80070003: Failed to register bundle.
[0A94:08FC][2012-02-11T10:02:55]: Apply complete, result: 0x80070003 restart: No
[0A94:08FC][2012-02-11T10:02:55]: Shutting down, exit code: 0x80070003

Any ideas?
Pete                                      
------------------------------------------------------------------------------
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to