[WiX-users] NGen with Votive

2006-11-17 Thread Michael Carlisle
Hi,

Is it possible to use the new NGen extension with votive? I'm wondering how 
to make visual studio pass the additional ext parameter when it calls candle 
and light.

Thanks,

Mike

_
Be the first to hear what's new at MSN - sign up to our free newsletters! 
http://www.msn.co.uk/newsletters


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Installing IIS applications under non-Admin account ?

2006-11-17 Thread Bob Arnson
Petr Vones wrote:
> WebApplication
> WebAppPool
> WebDirProperties
> WebSite
> WebVirtualDir
>
> The installation is designed for Windows Server 2003 SP1 (thus IIS6) created 
> by Wix 2.0. Currently it needs an administrator privilege to be installed.
>
> Would be possible to run such installation under non-administrator account ? 
>   

Not with the current IIS CAs. They use Admin Base Objects which require 
elevated rights.

-- 
sig://boB
http://bobs.org



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How to do change the datatype of a standard table?

2006-11-17 Thread Bob Arnson
Leo ... wrote:
>
> Some attributes in standard tables such as the Registry table contains 
> localizable string datatype.  How do I change that datatype to 
> non-localizable string datatype in WIX? Thx!
>

Edit the columns in wix\Data\tables.xml and rebuild.

-- 
sig://boB
http://bobs.org



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] How to do change the datatype of a standard table?

2006-11-17 Thread Leo ...

Some attributes in standard tables such as the Registry table contains localizable string datatype.  How do I change that datatype to non-localizable string datatype in WIX? Thx!


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] ask as Some

2006-11-17 Thread an


tool.gif
Description: GIF image
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Installing IIS applications under non-Admin account ?

2006-11-17 Thread Petr Vones
Hi,

I have an installation containing several ASP.NET 2.0 applications. I use 
following elements in the MSI package:

WebApplication
WebAppPool
WebDirProperties
WebSite
WebVirtualDir

The installation is designed for Windows Server 2003 SP1 (thus IIS6) created 
by Wix 2.0. Currently it needs an administrator privilege to be installed.

Would be possible to run such installation under non-administrator account ? 
It seems as there are problems with IIS metabase permissions. I was asked to 
create a special "Installation" account to perform the installation. Another 
issue is to allow run MSI Installer for non-administrator user, but there is 
a registry settings for it.

Thanks, Petr 


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] FW: File in use

2006-11-17 Thread Mike Dimmick
The SDK is clear: the signature of a custom action should be:

UINT __stdcall CustomAction( MSIHANDLE hInstall )

Reference:
http://msdn.microsoft.com/library/en-us/msi/setup/dynamic_link_libraries.asp

In my opinion, it doesn't need to be documented in WiX documentation; we
can't rewrite all of the SDK documentation.

-- 
Mike Dimmick

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Dane Anderson
Sent: 17 November 2006 19:17
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] FW: File in use

I got it working. It seems that msiexec REQUIRES that the function being
called return an int. By changing my KioskKillerMain from returning
void to returning an int, and returning a 0, the problem vanishes.

This is something that should be documented in the WiX documentation,
and mentioned in the tutorial.

My code wasn't failing, but it wasn't returning ANYTHING to msiexec,
which tells me that something in msiexec doesn't get initialized
(since it is using garbage) until the call to the entry point of the
dll is called in the custom action. Since it didn't get initialized
prior to that point, and the function wasn't returning anything, it
just kept (and subsequently used) the garbage it had before the call.



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] MSBuild Tasks

2006-11-17 Thread Francis Kam

Which version are you looking for? I have Michael's one, Neil's one, and
probably one or two of my own lying around somewhere. This thread was from a
while ago though. I happened to peek at the targets file of a newer build
and it's much better. Also, as Bob noted, if you're using v3, it's a lot
better too.

-Francis


On 11/10/06, Eric Fesh <[EMAIL PROTECTED]> wrote:


All:

Would anyone happen to have a copy of this version of wix.targets lying
around? I've been doing web searches, but the attachment
doesn't come up on the SourceForge forums... *frowny*

--

Eric Fesh
Customer Support Engineer/Software Test Engineer
Verari Systems Software, Inc.
110 12th Street North, Suite D103
Birmingham, AL 35203
Phone +1-205-397-3141 ext. 3149
Fax +1-205-397-3142
[EMAIL PROTECTED]
http://www.verarisoft.com/

The information contained in this communication may be confidential and is
intended only for the use of the recipient(s) named above.  If the reader
of
this communication is not the intended recipient(s), you are hereby
notified
that any dissemination, distribution, or copying of this communication, or
any of its contents, is strictly prohibited.  If you are not a named
recipient or received this communication by mistake, please notify the
sender
and delete the communication and all copies of it.


Neil Sleightholm wrote:
> Would it be possible for this version of wix.targets to be adopted by
> the team as the one that is currently distributed doesn't work with
> multiple wsx files?
>
> Neil
>
> PS Thanks Michael Luke you saved me lots of time!
>
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Michael Luke
> Sent: 12 May 2006 09:22
> To: [EMAIL PROTECTED]; 'Francis Kam'; 'Michael F. Collins,
> III'
> Cc: 'WiX-users'
> Subject: RE: [WiX-users] MSBuild Tasks
>
> Hi Rob,
>
> I made lots of changes to the MSBuild wix.targets a while back to fix a
> few bugs, but got stymied by the (to me) ridiculous requirement of
> downloading a pdf, printing it out, filling it in in ink and posting it
> thousands of miles to Seattle, just so I could submit the changes to the
> project.  I've worked on many open source projects, and this is the
> first one I've seen with such a requirement.
>
> Anyway, I'm not going to sign and post the contributor's agreement,
> because it's way too much hassle.  Attached is the modified .targets
> file, and I relinquish all rights blah di blah for my changes.
>
> This .targets file fixes the following issues:
>
> - Made incremental builds work correctly (a task will only run if source
> files have changed)
>
> - Allowed multiple wxs files to be used in one msi
>
> - Added BeforeXXX and AfterXXX targets for each action to allow for
> build custom tasks.  This is consistent with Microsoft's existing Team
> Build targets.
>
> - Moved the path to $(MSBuildExtensionsPath)\Windows Installer
> XML\Wix.targets (c:\program files\MsBuild\Windows Installer XML) to be
> consistent with MsBuild standards.  The wixtasks.dll and wix.targets
> files should both be installed to this location.
>
> To use it, you simply create an MsBuild project file (such as the
> MsBuild.proj attached) and pass that to MsBuild.
>
> Michael Luke
>
>
> [EMAIL PROTECTED] wrote:
>> Quick piece of information.  The MSBuild tasks were written by
>> somebody quickly and just handed to us.  There hasn't been any more
>> maintenance on the code since then.  At this point in time, I expect
>> you know more about how MSBuild works than anyone on the core WiX
>> development team.  Your bugs and suggestions would be much
>> appreciated.
>>
>>
>>
>> 
>>
>> From: [EMAIL PROTECTED]
>> [mailto:[EMAIL PROTECTED] On Behalf Of Francis
>> Kam Sent: Thursday, May 11, 2006 3:52 PM
>> To: Michael F. Collins, III
>> Cc: WiX-users
>> Subject: Re: [WiX-users] MSBuild Tasks
>>
>>
>>
>> Thanks for the reply.  I've modified the wix.targets for multiple
>> output support and it seems to be working fine. I'm rather
>> inexperienced with MSBuild, so maybe I'm just missing something, but
>> isn't the only way to get an array of strings to use item groups
>> instead of properties?  You really should be able to define more than
>> one preprocessor variable from the commandline and it seems to me the
>> only way is to change DefineConstants to an item group.  I've done
>> this with minimal negative side-effects so far.  Anyhow, it's good to
>> see I'm not crazy, and this is a path that others have considered and
>> followed before me.
>>
>>
>>
>> Just in case someone else is interested, what I ended up doing for
>> multiple output support was changing CompileObjOutput to an ItemGroup,
>
>> and then including:
>>
>>
>> @(Compile->'$(IntermediateOutputPath)%(filename)$(IntermediateExt)')
>>
>> The Compile target's output of course then becomes:
>>
>>  @(CompileObjOutput)
>>
>> Then I changed OutputFile in the call to Candle in that Compile target
>
>> to:
>>
>>  $(IntermediateO

[WiX-users] Very Urgent Stock Offer

2006-11-17 Thread winkler


blood clot.png
Description: JPEG image
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] FW: File in use

2006-11-17 Thread Dane Anderson
I got it working. It seems that msiexec REQUIRES that the function being
called return an int. By changing my KioskKillerMain from returning
void to returning an int, and returning a 0, the problem vanishes.

This is something that should be documented in the WiX documentation,
and mentioned in the tutorial.

My code wasn't failing, but it wasn't returning ANYTHING to msiexec,
which tells me that something in msiexec doesn't get initialized
(since it is using garbage) until the call to the entry point of the
dll is called in the custom action. Since it didn't get initialized
prior to that point, and the function wasn't returning anything, it
just kept (and subsequently used) the garbage it had before the call.

Thank you.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Wilson,
Phil
Sent: Thursday, November 16, 2006 5:10 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] File in use

 >>>The file [2][3] is being held in use by the following process: Name:
[4], Id: [5], Window Title: '[6]'.

The first problem: what the HECK are 2, 3, 4, 5, and 6?

It's a template, actual values supplied at run time. 

That log seems to show that your KioskKillerMain call failed, an error
was returned (the 3) and that becomes ERROR_INSTALL_FAILURE.  It's not a
coincidence that it calls your code and then immediately gets an error,
dumps the property values and stops.  Do you actually return that 3? If
not, MSI is seeing your code fail and returning it for you. 

Phil Wilson 


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Dane
Anderson
Sent: Thursday, November 16, 2006 4:40 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] File in use

I have an install package that I am working on. I created an application
to seek out and kill

any currently running instances of the application (or anything that
might be using it). That

application works perfectly. Unfortunately the install has to run
silently (no interface

what so ever beyond the default progress bar) because the customer is
using SMS to install

and popups and reboots cause SMS to think the install failed. Because it
has to run silently,

and MUST run before any files are copied to the target machine, I have
converted my little

killer app to a dll (to avoid having the cmd window popup). No problem
there. It properly

executes the dll at the proper time. Then I run into trouble. I seem to
be getting error code

1603 back (in the /l*v log file). The description of that error at:

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/set
up/windows_installer_error_messages.asp
 

is:

The file [2][3] is being held in use by the following process: Name:
[4], Id: [5], Window Title: '[6]'.

The first problem: what the HECK are 2, 3, 4, 5, and 6?

The Second problem: Why the heck is it talking about something being in
use?

The dll is being included via a binary element:

  

The CustomAction element is:

  

The Custom element (in the InstallExecuteSequence) is:

  NOT
Installed

So, I'm missing something. I'm not trying to execute anything, that I am
aware of, that is already on

the machine (other than something INSIDE the msi file).


The log file at that point contains:

Action start 15:56:56: InstKillKioskCmdLine.

MSI (s) (44:9C) [15:56:56:843]: Invoking remote custom action. DLL:
C:\WINDOWS\Installer\MSI24.tmp, Entrypoint: KioskKillerMain

MSI (s) (44:20) [15:56:56:843]: Generating random cookie.

MSI (s) (44:20) [15:56:56:858]: Created Custom Action Server with PID
1576 (0x628).

MSI (s) (44:18) [15:56:56:937]: Running as a service.

MSI (s) (44:18) [15:56:56:937]: Hello, I'm your 32bit Impersonated
custom action server.

Action ended 15:56:57: InstKillKioskCmdLine. Return value 3.

Action ended 15:56:57: INSTALL. Return value 3.

Property(S): REGEDIT = Regedit.exe

Property(S): INTAVA = C:\Program Files\Intava\

Property(S): INSTALDIR = C:\Program Files\Intava\Kiosk\

Property(S): MAPS = C:\Program Files\Intava\Kiosk\Maps\

Property(S): SPRINT = C:\Program Files\Intava\Sprint\

Property(S): CONTENT = C:\Program Files\Intava\Sprint\Content\

Property(S): TempFolder = C:\DOCUME~1\danea\LOCALS~1\Temp\

Property(S): TARGETDIR = C:\

Property(S): ProgramFilesFolder = C:\Program Files\

Property(S): Manufacturer = Intava

Property(S): ProductCode = {85E95DC3-B2E9-4FB5-B634-DE0DDE236339}

Property(S): ProductLanguage = 1033

Property(S): ProductName = Intava Kiosk Setup for Sprint 2.0.0.2168

Property(S): ProductVersion = 2.0.0.2168

Property(S): UpgradeCode = {3164AE7B-15FE-474D-B0CB-7C599802CD52}

Property(S): ALLUSERS = 1

Property(S): REBOOT = ReallySuppress

Property(S): CMD = cmd.exe

Property(S): WINDOWSFOLDER = [WindowsFolder]

Property(S): AdminProperties = ALLUSERS;REBOOT

Property(S): SecureCustomProperties = ALLUSERS;REBOOT

Re: [WiX-users] UI examples & custom project

2006-11-17 Thread david adams
We use Mondo and add three additional dialogs (two that are "optional").  
The optional dialogs are controlled by Property values within the WXS file.  
In our case, if the property associated to a dialog is "0", it is not shown. 
  If it is "1", it is shown.  The button navigation is predefined in our 
updated UI wixlib to work regardless of the actual path that the property 
values create.

David Adams
MSN MessengerID: [EMAIL PROTECTED]





>From: Surendra Katari <[EMAIL PROTECTED]>
>To: Bob Arnson <[EMAIL PROTECTED]>
>CC: wix-users@lists.sourceforge.net
>Subject: Re: [WiX-users] UI examples & custom project
>Date: Fri, 17 Nov 2006 09:19:07 -0800
>MIME-Version: 1.0
>Received: from lists-outbound.sourceforge.net ([66.35.250.225]) by 
>bay0-mc11-f9.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.2444); Fri, 
>17 Nov 2006 09:19:30 -0800
>Received: from sc8-sf-list1-new.sourceforge.net (unknown [10.3.1.93])by 
>sc8-sf-spam2.sourceforge.net (Postfix) with ESMTPid 5664E13838; Fri, 17 Nov 
>2006 09:19:20 -0800 (PST)
>Received: from sc8-sf-mx2-b.sourceforge.net 
>([10.3.1.92]helo=mail.sourceforge.net)by sc8-sf-list1-new.sourceforge.net 
>with esmtp (Exim 4.43)id 1Gl7Mz-qd-GUfor 
>wix-users@lists.sourceforge.net; Fri, 17 Nov 2006 09:19:18 -0800
>Received: from mailb.microsoft.com ([131.107.115.215] 
>helo=smtp.microsoft.com)by mail.sourceforge.net with esmtps 
>(TLSv1:RC4-MD5:128) (Exim 4.44)id 1Gl7My-0007tH-Kefor 
>wix-users@lists.sourceforge.net; Fri, 17 Nov 2006 09:19:17 -0800
>Received: from tk5-exhub-c104.redmond.corp.microsoft.com (157.54.70.185) 
>byTK5-EXGWY-E802.partners.extranet.microsoft.com (10.251.56.168) 
>withMicrosoftSMTP Server (TLS) id 8.0.685.15; Fri, 17 Nov 2006 09:19:10 
>-0800
>Received: from win-imc-01.wingroup.windeploy.ntdev.microsoft.com 
>(157.54.0.39)by tk5-exhub-c104.redmond.corp.microsoft.com (157.54.70.185) 
>withMicrosoft SMTP Server id 8.0.685.20; Fri, 17 Nov 2006 09:19:07 -0800
>Received: from 
>WIN-MSG-21.wingroup.windeploy.ntdev.microsoft.com([157.54.62.25]) by 
>win-imc-01.wingroup.windeploy.ntdev.microsoft.comwithMicrosoft 
>SMTPSVC(6.0.3790.2786); Fri, 17 Nov 2006 09:19:05 -0800
>X-Message-Info: LsUYwwHHNt3WILnccyZG/JC4fDiy25fWpbTGeABz3GA=
>X-MimeOLE: Produced By Microsoft Exchange V6.5
>Content-Class: urn:content-classes:message
>X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: [WiX-users] UI 
>examples & custom project
>Thread-Index: AccKZMb+ssPa0khFQnGPlA7ar+WN/wAB4nPQ
>References: 
><[EMAIL PROTECTED]><[EMAIL PROTECTED]>
>X-OriginalArrivalTime: 17 Nov 2006 17:19:05.0434 
>(UTC)FILETIME=[7BDF83A0:01C70A6C]
>X-Spam-Score: 0.0 (/)
>X-Spam-Report: Spam Filtering performed by sourceforge.net.See 
>http://spamassassin.org/tag/ for more details.Report problems 
>tohttp://sf.net/tracker/?func=add&group_id=1&atid=210.0 HTML_MESSAGE
>BODY: HTML included in message
>X-BeenThere: wix-users@lists.sourceforge.net
>X-Mailman-Version: 2.1.8
>Precedence: list
>List-Id: "General discussion for Windows Installer XML 
>toolset."
>List-Unsubscribe: 
>,PROTECTED]>
>List-Archive: 
>
>List-Post: 
>List-Help: 
>List-Subscribe: 
>,PROTECTED]>
>Errors-To: [EMAIL PROTECTED]
>Return-Path: [EMAIL PROTECTED]
>
>I would like to use Mono dialog order, bug need to add couple of new
>dialogs. We have pretty complex dialog sequence and less time to
>implement. So, exploring opportunities for code reuse.
>
>
>
>From: Bob Arnson [mailto:[EMAIL PROTECTED]
>Sent: Friday, November 17, 2006 8:15 AM
>To: Surendra Katari
>Cc: wix-users@lists.sourceforge.net
>Subject: Re: [WiX-users] UI examples & custom project
>
>
>
>Surendra Katari wrote:
>
>I am getting the following error when trying to build the UI custom
>samples. Can someone help in resolving them?
>
>
>The sample is broken but the basic approach should still work. What kind
>of customization do you want to make?
>
>
>
>
>--
>sig://boB
>http://bobs.org


>-
>Take Surveys. Earn Cash. Influence the Future of IT
>Join SourceForge.net's Techsay panel and you'll get the chance to share 
>your
>opinions on IT & business topics through brief surveys - and earn cash
>http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV


>___
>WiX-users mailing list
>WiX-users@lists.sourceforge.net
>https://lists.sourceforge.net/lists/listinfo/wix-users

_
Fixing up the home? Live Search can help 
http://imagine-windowslive.com/search/kits/default.aspx?kit=improve&locale=en-US&source=hmemailtaglinenov06&FORM=WLMTAG


--

Re: [WiX-users] UI examples & custom project

2006-11-17 Thread Surendra Katari
I would like to use Mono dialog order, bug need to add couple of new
dialogs. We have pretty complex dialog sequence and less time to
implement. So, exploring opportunities for code reuse.  

 

From: Bob Arnson [mailto:[EMAIL PROTECTED] 
Sent: Friday, November 17, 2006 8:15 AM
To: Surendra Katari
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] UI examples & custom project

 

Surendra Katari wrote: 

I am getting the following error when trying to build the UI custom
samples. Can someone help in resolving them?


The sample is broken but the basic approach should still work. What kind
of customization do you want to make?




-- 
sig://boB
http://bobs.org
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Setting Force reboot property causes error Error LGHT0217

2006-11-17 Thread Bob Arnson

KURZE, Uwe wrote:


i set the property

Force

to force a reboot after finishing installation.

but if i compile my project light.exe fails with the error:

light.exe(0,0): Error LGHT0217: An unexpected external UI message was 
received: You must restart your system for the configuration changes 
made to DOXiS Rendition Server 5.0.0 to take effect. Click Yes to 
restart now or No if you plan to manually restart later.


whats wrong?



I assume you're using WiX v3. Light in v3 runs validation, which is a 
form of installation. Try passing the -sval switch to Light; if it 
works, there might be a way to run most validations even with the Force 
REBOOT setting.


--
sig://boB
http://bobs.org

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] I have installed latest WiX (3.0.3215) and I do not see WiX project types in 'Add Project' wizard.

2006-11-17 Thread Bob Arnson

Srdjan Jovcic wrote:


I do not know exactly what I did wrong -- I have installed Wix3.msi 
and now I have folder 'WiX' in Add New Project wizard, but there is 
nothing in it... Folder C:\Program Files (x86)\Microsoft Visual Studio 
8\Common7\IDE\ProjectTemplates\WiX contains three ZIP files, but for 
some reason VS doesn't like them...




If you're running Vista, see 
http://blogs.msdn.com/jrock/archive/2006/11/16/missing-project-item-template-files-after-installing-votive.aspx.


--
sig://boB
http://bobs.org

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Using InstallFiles

2006-11-17 Thread Bob Arnson

Pallavi Patrutkar wrote:


I want that a file should get copied to the destination directory 
before I execute a custom action.


I tried using 'After=InstallFiles' for that particular custom action, 
but still this CA gets called before 'InstallFiles'.


Is there anything more to be added in my WIX file?



If a CA relies on files being installed, it must be a deferred CA 
(Execute="deferred") so it's run during the script-execution phase of 
the install.


--
sig://boB
http://bobs.org

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] UI examples & custom project

2006-11-17 Thread Bob Arnson

Surendra Katari wrote:


I am getting the following error when trying to build the UI custom 
samples. Can someone help in resolving them?




The sample is broken but the basic approach should still work. What kind 
of customization do you want to make?


--
sig://boB
http://bobs.org

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How to execute tallow.exe?

2006-11-17 Thread Bob Arnson

Lynette Ooh Hooi Lin wrote:


F:\wix-bin>tallow.exe -c C:\WINDOWS\system32\notepad.exe > notepad.wxs



Tallow's -c switch is used to extract COM interop registration from a 
managed assembly. Notepad.exe isn't. What are you trying to do with Tallow?


--
sig://boB
http://bobs.org

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WiX Patching - Secondary Issue

2006-11-17 Thread Bob Arnson

Alan W. Waddington wrote:


I now face another issue in that the patch file does not update 
anything on my target machine.  The patch does not report any errors 
on execution and completes successfully, but on checking the 
application there is no change, neither is there a change in the 
version numbers on the files that should have been updated.




Get a verbose log when you install the patch; MSI logs what it decides 
about needing to update files.


--
sig://boB
http://bobs.org

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] way to create merge module and avoiding codeduplication

2006-11-17 Thread Bob Arnson
Arnette, Bill wrote:
> So how do you replace a merge module with a wixlib.  A merge module has
> a cab with the files to be installed in it.  AFAIK, a wixlib has no way
> transporting the files to be installed to the final MSI.  So it seems to
> me that to use a wixlib, you need the wixlib and the binaries to be
> installed by the wixlib.  Correct?  
>   

That's true in WiX v2. In WiX v3, Derek got rid of that limitation to 
put the last stake in merge modules; .wixlibs in v3 can hold their files.

> The problem we have is that we are trying to include some components
> from an older product with a newer product.  The older product
> references the binaries to be installed with a compiler variable set to
> "..\stage\product\bin" while the new product references them with
> "stage\product\bin".  The newer product is the staging convention going
> forward.  So it seems we will have to revamp the older product's build
> to stage everything like the new product.  Correct?
>   

You can pass multiple -b switches to light to bind different 
directories, as long as there are no duplicate files that would end up 
picking up the wrong files.

-- 
sig://boB
http://bobs.org



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Uninstall Files in use

2006-11-17 Thread Bob Arnson
Michael Carlisle wrote:
> I'd be interested in taking a look at the wix CloseApp but not sure 
> how I would access it?

It's not currently exposed through an extension, so you need to directly 
access it in wixca.dll.

-- 
sig://boB
http://bobs.org



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Network based installations?

2006-11-17 Thread André Pönitz
> I wrote: 
> > Mike Dimmick wrote:
> > > See 'Internet Download Bootstrapping' in MSDN Library, at
> > > http://msdn.microsoft.com/library/default.asp?url=/library/en-
> > > us/msi/setup/internet_download_bootstrapping.asp.
> > 
> > Looks very promising. 
> 
> ... however, I failed when trying to implement it.

An one more post talking to myself:

> Has anybody succeeded in creating a web based installation using
> WinXP SP2 targetting Win2k+, using Windows Installer 3.0?

It 'works' now. I just changed my initial 'https:' based setup
to 'http:'.

Is this some kind of known limitation that this kind of
installation only work over non-secure http?

Andre'

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Network based installations?

2006-11-17 Thread André Pönitz
I wrote: 
> Mike Dimmick wrote:
> > See 'Internet Download Bootstrapping' in MSDN Library, at
> > http://msdn.microsoft.com/library/default.asp?url=/library/en-
> > us/msi/setup/internet_download_bootstrapping.asp.
> 
> Looks very promising. 

... however, I failed when trying to implement it.

So far I have:
  - put msi, cabs, said 'setup.exe' modified by msistuff,
and instmsi{A,W}.exe on a web site.
  - start the setup.exe from there.

A dialog pops up telling me that the issuer could not be
verified (so I propbably missed to put that in somewhere,...)

I click 'execute' nevertheless.

A window named 'Windows Installer Installation Wrapper' shows
up for a very short time and that's it.

I am pretty sure the web server as such works.

I've tried to follow 
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/a_url_based_windows_installer_installation_example.asp

but that seems to require Windows Installer 2.0, so far I assumed 3.0.
So maybe it's not the appropriate receipt to follow.

Moreover, I did not find setup.exe  on my system, but
sources in C:\Programme\Microsoft Platform SDK\Samples\SysMgmt\Msi\setup.exe
which I compiled.

instmsi{A,W}.exe I got from 
C:\Programme\Microsoft Visual Studio\COMMON\Tools\VSInst\BuildRes

Has anybody succeeded in creating a web based installation using
WinXP SP2 targetting Win2k+, using Windows Installer 3.0?

If not, should I try Windows Installer 2.0?

Any hint is appreciated.

Regards,
Andre'

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Setting Force reboot property causes error Error LGHT0217

2006-11-17 Thread KURZE, Uwe
i set the property

Force

to force a reboot after finishing installation.

but if i compile my project light.exe fails with the error:

light.exe(0,0): Error LGHT0217: An unexpected external UI message was
received: You must restart your system for the configuration changes
made to DOXiS Rendition Server 5.0.0 to take effect. Click Yes to
restart now or No if you plan to manually restart later.

whats wrong?

Greetings Uwe Kurze

 

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Using InstallFiles

2006-11-17 Thread Pallavi Patrutkar
Hello,

 

I want that a file should get copied to the destination directory before
I execute a custom action.

I tried using 'After=InstallFiles' for that particular custom action,
but still this CA gets called before 'InstallFiles'.

Is there anything more to be added in my WIX file?

 

Please guide me.

 

Regards,

Pallavi,

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users