Hi Palbinder,

Here is the wxs file content:-
<?xml version='1.0' encoding='windows-1252'?>
<Wix xmlns='http://schemas.microsoft.com/wix/2003/01/wi'>
  <Product Name='Foobar 1.0' Id='23456789-86C7-4D14-AEC0-86416A69ABDE'
    Language='1031' Codepage='1252' Version='1.0.0' Manufacturer='Acme
Ltd.'>

    <Package Id='23456789-86C7-4D14-AEC0-86416A69ABDE' Keywords='Installer'
      Description="Acme's Foobar 1.0 Installer"
      Comments='Foobar is a registered trademark of Acme Ltd.'
Manufacturer='Acme Ltd.'
      InstallerVersion='100' Languages='1031' Compressed='yes'
SummaryCodepage='1252' />

    <Media Id='1' Cabinet='Sample.cab' EmbedCab='yes' DiskPrompt="CD-ROM #1"
/>
    <Property Id='DiskPrompt' Value="Acme's Foobar 1.0 Installation [1]" />

    <Directory Id='TARGETDIR' Name='SourceDir'>
      <Directory Id='ProgramFilesFolder' Name='PFiles'>
        <Directory Id='Acme' Name='Acme'>
          <Directory Id='INSTALLDIR' Name='Foobar10' LongName='Foobar 1.0'>

            <Component Id='MainExecutable'
Guid='23456789-83F1-4F22-985B-FDB3C8ABD471'>
              <File Id='FoobarEXE' Name='Foobar10.exe'
LongName='FoobarAppl10.exe' DiskId='1'
                Source='FoobarAppl10.exe' Vital='yes'>
                <Shortcut Id="startmenuFoobar10" Directory="ProgramMenuDir"
Name="Foobar10" 
                  LongName="Foobar 1.0" WorkingDirectory='INSTALLDIR'
Icon="Foobar10.exe" IconIndex="0" />
                <Shortcut Id="desktopFoobar10" Directory="DesktopFolder"
Name="Foobar10"
                  LongName="Foobar 1.0" WorkingDirectory='INSTALLDIR'
Icon="Foobar10.exe" IconIndex="0" />
              </File>
            </Component>

            <Component Id='HelperLibrary'
Guid='23456789-6BE3-460D-A14F-75658D16550B'>
              <File Id='HelperDLL' Name='Helper.dll' DiskId='1'
Source='Helper.dll' Vital='yes' />
            </Component>

            <Component Id='Manual'
Guid='23456789-574D-4A9A-A266-5B5EC2C022A4'>
              <File Id='Manual' Name='Manual.pdf' DiskId='1'
Source='Manual.pdf'>
                <Shortcut Id="startmenuManual" Directory="ProgramMenuDir"
Name="Manual" LongName="Instruction Manual" />
              </File>
            </Component>

          </Directory>
        </Directory>
      </Directory>

      <Directory Id="ProgramMenuFolder" Name="PMenu" LongName="Programs">
        <Directory Id="ProgramMenuDir" Name='Foobar10' LongName="Foobar 1.0"
/>
      </Directory>

      <Directory Id="DesktopFolder" Name="Desktop" />
    </Directory>

    <Feature Id='Complete' Title='Foobar 1.0' Description='The complete
package.'
      Display='expand' Level='1' ConfigurableDirectory='INSTALLDIR'>
      <Feature Id='MainProgram' Title='Program' Description='The main
executable.' Level='1'>
        <ComponentRef Id='MainExecutable' />
        <ComponentRef Id='HelperLibrary' />
      </Feature>

      <Feature Id='Documentation' Title='Description' Description='The
instruction manual.' Level='1000'>
        <ComponentRef Id='Manual' />
      </Feature>
    </Feature>

    <UIRef Id="WixUI_Mondo" />
    <UIRef Id="WixUI_ErrorProgressText" />

    <Icon Id="Foobar10.exe" SourceFile="FoobarAppl10.exe" />
  </Product>
</Wix>

Thanks and regards,
Shyam.


Pally Sandher wrote:
> 
> Could be literally anything. Without seeing your XML it's impossible to
> say. 
> 
> Palbinder Sandher 
> Software Deployment & IT Administrator
> T: +44 (0) 141 945 8500 
> F: +44 (0) 141 945 8501 
> 
> http://www.iesve.com 
> **Design, Simulate + Innovate with the <Virtual Environment>**
> Integrated Environmental Solutions Limited. Registered in Scotland No.
> SC151456 
> Registered Office - Helix Building, West Of Scotland Science Park,
> Glasgow G20 0SP
> Email Disclaimer
> 
> 
> -----Original Message-----
> From: cnms [mailto:indrash...@gmail.com] 
> Sent: 10 November 2009 16:23
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] New to wix: LGHT0036: Could not find extension
> 'WixUIExtension'
> 
> 
> Hi,
> 
> I tried to do this:-
> "C:\Program Files\Windows Installer XML v3\bin\light.exe"  -ext
> "C:\Program Files\Windows Installer XML v3\bin\WixUIExtension.dll" -out
> SampleWixUI.msi SampleWixUI.wixobj Now I am getting light.exe : error
> LGHT0001 : Unknown error "-1".
> Exception Type: System.IO.IOException
> 
> What could be the reason?
> 
> Thanks and regards,
> Shyam.
> 
> 
> Pally Sandher wrote:
>> 
>> Try
>> light.exe -ext "C:\Program Files\Windows Installer XML 
>> v3\bin\WixUIExtension.dll" SampleWixUI.wixobj or light.exe -ext 
>> "C:\Program Files (x86)\Windows Installer XML 
>> v3\bin\WixUIExtension.dll" SampleWixUI.wixobj if you're on an x64 
>> version of Windows.
>> 
>> If you've installed WiX to a different location modify the path 
>> accordingly.
>> 
>> If you're using Votive (WiX plug-in for Visual Studio) simply add 
>> WiXUIExtention as a reference in your WiX Project & you don't need to 
>> worry about any of this.
>> 
>> Good Luck.
>> 
>> Palbinder Sandher
>> Software Deployment & IT Administrator
>> T: +44 (0) 141 945 8500
>> F: +44 (0) 141 945 8501
>> 
>> http://www.iesve.com
>> **Design, Simulate + Innovate with the <Virtual Environment>** 
>> Integrated Environmental Solutions Limited. Registered in Scotland No.
>> SC151456
>> Registered Office - Helix Building, West Of Scotland Science Park, 
>> Glasgow G20 0SP Email Disclaimer
>> 
>> 
>> -----Original Message-----
>> From: cnmshyam [mailto:indrash...@gmail.com]
>> Sent: 10 November 2009 15:21
>> To: wix-users@lists.sourceforge.net
>> Subject: [WiX-users] New to wix: LGHT0036: Could not find extension 
>> 'WixUIExtension'
>> 
>> 
>> Hi,
>> 
>> I am getting LGHT0036: Could not find extension 'WixUIExtension' when 
>> i try to run light.exe -ext WixUIExtension SampleWixUI.wixobj.
>> 
>> I have taken the sample example form
>> http://www.tramontana.co.hu/wix/lesson2.php and tried to run. 
>> 
>> Please help me out.
>> 
>> Thanks and regards,
>> Shyam.
>> 
>> ----------------------------------------------------------------------
>> -------- Let Crystal Reports handle the reporting - Free Crystal 
>> Reports 2008 30-Day trial. Simplify your report design, integration 
>> and deployment - and focus on what you do best, core application 
>> coding. Discover what's new with Crystal Reports now.  
>> http://p.sf.net/sfu/bobj-july 
>> _______________________________________________
>> WiX-users mailing list
>> WiX-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wix-users
>> 
>> 
> 
> --
> View this message in context:
> http://n2.nabble.com/New-to-wix-LGHT0036-Could-not-find-extension-WixUIE
> xtension-tp3980301p3980841.html
> Sent from the wix-users mailing list archive at Nabble.com.
> 
> ------------------------------------------------------------------------
> ------
> Let Crystal Reports handle the reporting - Free Crystal Reports 2008
> 30-Day trial. Simplify your report design, integration and deployment -
> and focus on what you do best, core application coding. Discover what's
> new with Crystal Reports now.  http://p.sf.net/sfu/bobj-july
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> 
> 
> ------------------------------------------------------------------------------
> Let Crystal Reports handle the reporting - Free Crystal Reports 2008
> 30-Day 
> trial. Simplify your report design, integration and deployment - and focus
> on 
> what you do best, core application coding. Discover what's new with
> Crystal Reports now.  http://p.sf.net/sfu/bobj-july
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> 

-- 
View this message in context: 
http://n2.nabble.com/New-to-wix-LGHT0036-Could-not-find-extension-WixUIExtension-tp3980301p3981159.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to