Re: [WiX-users] Assistance with Burn

2012-09-03 Thread Bob Arnson
On 30-Aug-12 10:31, Jeanne Dixon wrote:
> I have tried that, but I am missing a piece. How do I reference the 
> rtflicense? If I put in  Id="WixStandardBootstrapperApplication.Rtflicense/> it gives me an error 
> (unresolved reference). How do I reference this within my new dll? If I did 
> not change anything else in the dll (other that 2 lines of code to check for 
> the user cancelled error), I assume it would still be there.
The license is a separate payload. See 
src\ext\BalExtension\wixlib\wixstdba.wxs.

-- 
sig://boB
http://joyofsetup.com/


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Assistance with Burn

2012-08-30 Thread Jeanne Dixon
I have tried that, but I am missing a piece. How do I reference the rtflicense? 
If I put in mailto:b...@joyofsetup.com] 
Sent: Thursday, August 30, 2012 9:38 AM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Assistance with Burn

On 29-Aug-12 09:27, Jeanne Dixon wrote:
> I have attempted to rename the dll I built in the wixstdba directory to be 
> WixBalExtension.dll and copied it into my Wix3.6 Toolset directory. When I 
> try to build my bootstrapper it gives me an error that the dll could not be 
> loaded.
WixBalExtension.dll is a WiX extension that includes, among other 
things, wixstdba.dll. If you just want to replace wixstdba.dll, you can 
use the existing WixBalExtension.dll but need to reference 
WixStandardBootstrapperApplication using a BootstrapperApplication 
element with a @SourceFile attribute that points to your replacement 
wixstdba.dll. See src\ext\BalExtension\wixlib\wixstdba* in the WiX source.

-- 
sig://boB
http://joyofsetup.com/


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Assistance with Burn

2012-08-30 Thread Bob Arnson
On 29-Aug-12 09:27, Jeanne Dixon wrote:
> I have attempted to rename the dll I built in the wixstdba directory to be 
> WixBalExtension.dll and copied it into my Wix3.6 Toolset directory. When I 
> try to build my bootstrapper it gives me an error that the dll could not be 
> loaded.
WixBalExtension.dll is a WiX extension that includes, among other 
things, wixstdba.dll. If you just want to replace wixstdba.dll, you can 
use the existing WixBalExtension.dll but need to reference 
WixStandardBootstrapperApplication using a BootstrapperApplication 
element with a @SourceFile attribute that points to your replacement 
wixstdba.dll. See src\ext\BalExtension\wixlib\wixstdba* in the WiX source.

-- 
sig://boB
http://joyofsetup.com/


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Assistance with Burn

2012-08-29 Thread Jeanne Dixon
I have attempted to rename the dll I built in the wixstdba directory to be 
WixBalExtension.dll and copied it into my Wix3.6 Toolset directory. When I try 
to build my bootstrapper it gives me an error that the dll could not be loaded.

What do I need to do to properly build a new WixBalExtension.dll?

-Original Message-
From: Jeanne Dixon [mailto:jdi...@cots.com] 
Sent: Tuesday, August 28, 2012 10:32 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Assistance with Burn

I really could use some assistance with this. I have changed 
WixStandardBootstrapperApplication.cpp as I mentioned, but I can't figure out 
what to build (do I build at the ext source level or where), how to build it (I 
get lots of errors and warnings that files are missing when I try to open 
ext.sln).  Can someone explain where, what, and how I need to build?

I have made a dll in the wixstdba directory, but I don't know how to use the 
dll within the burn bundle. I attempted to make the BootsrapperApplication in 
my wxs file, but of course that did not work.

Any ideas on what I need to do?

-Original Message-
From: Jeanne Dixon [mailto:jdi...@cots.com] 
Sent: Friday, August 24, 2012 2:12 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Assistance with Burn

I have been attempting to make simple changes to the theme of my burn 
application. Most of this has been easy, but I am now running into a few things 
that I can't seem to find simple answers to.

First, if the user cancels the install from my bootstrap, it shows that the 
install failed and gives the error code and description (as provided in the 
examples). Without creating my own BA, is there a way to have conditional text 
for "User canceled" vs a real error? Also, how do I turn on the error logs for 
Burn (and where does it put them by default - I am new to all this and I don't 
really know where %temp% is).

Second, if I have to create my own BA to handle this, how do I go about 
integrating it into my bootstrap? I have made changes to 
WixStandardBootstrapperApplication.cpp, but I don't know what to do with the 
dll generated or how and where to put the config file (I have seen examples of 
some of this but there is no concise information on what to do and where to put 
it).
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Assistance with Burn

2012-08-28 Thread Jeanne Dixon
I really could use some assistance with this. I have changed 
WixStandardBootstrapperApplication.cpp as I mentioned, but I can't figure out 
what to build (do I build at the ext source level or where), how to build it (I 
get lots of errors and warnings that files are missing when I try to open 
ext.sln).  Can someone explain where, what, and how I need to build?

I have made a dll in the wixstdba directory, but I don't know how to use the 
dll within the burn bundle. I attempted to make the BootsrapperApplication in 
my wxs file, but of course that did not work.

Any ideas on what I need to do?

-Original Message-
From: Jeanne Dixon [mailto:jdi...@cots.com] 
Sent: Friday, August 24, 2012 2:12 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Assistance with Burn

I have been attempting to make simple changes to the theme of my burn 
application. Most of this has been easy, but I am now running into a few things 
that I can't seem to find simple answers to.

First, if the user cancels the install from my bootstrap, it shows that the 
install failed and gives the error code and description (as provided in the 
examples). Without creating my own BA, is there a way to have conditional text 
for "User canceled" vs a real error? Also, how do I turn on the error logs for 
Burn (and where does it put them by default - I am new to all this and I don't 
really know where %temp% is).

Second, if I have to create my own BA to handle this, how do I go about 
integrating it into my bootstrap? I have made changes to 
WixStandardBootstrapperApplication.cpp, but I don't know what to do with the 
dll generated or how and where to put the config file (I have seen examples of 
some of this but there is no concise information on what to do and where to put 
it).
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Assistance with Burn

2012-08-24 Thread Wesley Manning
Burn puts log files in %temp%.  To go to %temp% type %temp% in the start menu 
search box (or run box if you  have Windows XP) and it will take you there.  

You're other questions I don't know.

Wes

-Original Message-
From: Jeanne Dixon [mailto:jdi...@cots.com] 
Sent: August-24-12 3:12 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Assistance with Burn

I have been attempting to make simple changes to the theme of my burn 
application. Most of this has been easy, but I am now running into a few things 
that I can't seem to find simple answers to.

First, if the user cancels the install from my bootstrap, it shows that the 
install failed and gives the error code and description (as provided in the 
examples). Without creating my own BA, is there a way to have conditional text 
for "User canceled" vs a real error? Also, how do I turn on the error logs for 
Burn (and where does it put them by default - I am new to all this and I don't 
really know where %temp% is).

Second, if I have to create my own BA to handle this, how do I go about 
integrating it into my bootstrap? I have made changes to 
WixStandardBootstrapperApplication.cpp, but I don't know what to do with the 
dll generated or how and where to put the config file (I have seen examples of 
some of this but there is no concise information on what to do and where to put 
it).
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and threat 
landscape has changed and how IT managers can respond. Discussions will include 
endpoint security, mobile security and the latest in malware threats. 
http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users