[WiX-users] Silent install messing up my custom action

2006-08-15 Thread Don Tasanasanta








I have a custom action that changes the location of the
installation directory depending on whether or not the user has admin privileges.

 

If the user has admin privileges then the install defaults
to program files

If the user does not have admin privileges then the install
defaults to the local user space (Application Data)

 

My custom action is sequenced after LaunchConditions (which
is sequenced after AppSearch) in the Execute Sequence

 

This works great when not running in silent mode. But when
the install is run with a /qn switch the UI Sequence is not run thus the
Costfinalize action in the UI is not run and the directory properties are not
setup until after my Custom Action is run. Thus my custom action doesn’t
correctly set the install path. 

 

Does anyone have a suggestion for dynamically setting the install
path when running in silent mode? 

 

__

 

Don Tasanasanta

VIACK Corporation

425-605-7423

 






-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Solution to fix bug "Adding component to COM+ if it is in the GAC" [1487586]

2006-08-15 Thread Alexander Biryukov


I found solution to fix bug [1487586] when adding component to COM+ if it  
is in the GAC.

See attached file with code patch and comments.

Some details:
 wix version: 2.0.4409.0
 Updated file src\ca\pubca\pcaexec\cpiasmexec.cpp
 Patch tested on WinXP SP2 with installed .Net 1.1 and 2.0 simultaneously.
 Bug at sourceforge :  
http://sourceforge.net/tracker/index.php?func=detail&aid=1487586&group_id=105970&atid=642714


Is it possible to add this code to main WiX code tree ?

--
Alexander Biryukov-
BUG: [ 1487586 ] Adding component to COM+ if it is in the GAC
URL: 
http://sourceforge.net/tracker/index.php?func=detail&aid=1487586&group_id=105970&atid=642714
-

Solution:

See comments in code.
This tested on WinXP SP2 with installed .Net 1.1 and 2.0 simultaneously. 


File src\ca\pubca\pcaexec\cpiasmexec.cpp

...
Line 843:   hr = pAssemblyCache->QueryAssemblyInfo(0, pwzAssemblyName, 
&assemblyInfo);

// -- [Begin of new code] --
if(hr == 0x80131047) // 0x80131047 - The given assembly name or 
code-base is invalid
{
// In .Net 1.x and .Net 2.0 AssemblyName will be different
//   .Net 1.x format: "MyAssembly, Version=1.0.0.0, 
Culture=neutral, PublicKeyToken=A6C259C05F51723A, ProcessorArchitecture=MSIL, 
Language=Neutral"
//   .Net 2.0 format: "MyAssembly, Version=1.0.0.0, 
Culture=neutral, PublicKeyToken=A6C259C05F51723A"
//
// Trying to get assembly info by reformatted assembly name 
string in .Net 2.0 format.

// Cuting off a tail of assambly name string (from 
"ProcessorArchitecture" to end)
LPWSTR pwzSubStr = wcsstr(pwzAssemblyName, L", 
ProcessorArchitecture");
size_t foundPos = pwzSubStr ? pwzSubStr-pwzAssemblyName : -1;
if(foundPos > 0)
{
LPWSTR pwzAssemblyName2 = new WCHAR[foundPos+1];
StringCchCopyW(pwzAssemblyName2, foundPos+1, 
pwzAssemblyName);

WcaLog(LOGMSG_STANDARD, "Alternative assembly name: 
%S", pwzAssemblyName2);

// Trying to get assembly info in alternative format
hr = pAssemblyCache->QueryAssemblyInfo(0, 
pwzAssemblyName2, &assemblyInfo);
delete [] pwzAssemblyName2;
}
}
// -- [End of new code] --

Line 844: if (HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND) == hr)
...


---
Alexander Biryukov
[EMAIL PROTECTED]
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] MSComm32.ocx MSM not registering ocx

2006-08-15 Thread Dave Williamson



When using the VB6 
merge modules from Microsoft's download site (specifically the mscomm32.msm) I 
am finding that the mscomm32.ocx has to be manually registered (using regsvr32) 
or else the .NET 2003 application that is trying to call it gets a "Class not 
registered" error.
 
Prior to including 
this MSM I had placed Tallow generated code in my wix code because I did 
not know the MSMs existed.  When installing using the tallow 
generated code all was well.
 
Anyone know where I 
should start to look to find out what is wrong when using the MSM?  Or is 
it bad to use the MSM?
 
Should I pull the 
component GUID out of the MSM and then use that GUID with the tallow generated 
code?
 
Dave WilliamsonClear Sky 
Software[EMAIL PROTECTED]www.clearskysoftware.com

 
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] My Installer Requirements

2006-08-15 Thread Magus

Ok I've made a a lot of posts in the past, but really most of my questions
have to do what with what I am required to make the installer do, so
alternatives are not optional.  With that said I would like to post what I
am required to create and maybe see if anyone has any suggestions or knows
exactly what I should do, because I am at a loss.

1.  My License agreement + Another companys license agreement in one text
field. 
Problems - Other companys license must be obtained and inserted into
my license agreement at runtime.
My solution - Make my own dialog in win32 to display in a
Richedit2.0 control
More problems - My next dialog box (created in Wix) needs a back
button
Question - How do I return back to the win32 dialog without exiting
setup, 
but making it so the Wix dialog goes way and then will reappear if
the user click
next on my dialog box
I can further clarify if I need to.
2.  Program is suppose to boot and run from DVD if user chooses not to
Install!  It also is suppose to put a Launcher app on the users computer
that is suppose to know if the user installed the app or not. (probably not
a wix thing but maybe someone had a similar situation)
-- 
View this message in context: 
http://www.nabble.com/My-Installer-Requirements-tf2110611.html#a5819078
Sent from the wix-users forum at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Light error 0216

2006-08-15 Thread Derek Cicerone
Title: Message









Please try the latest 3.0 release – we’re continuously fixing
bugs for 3.0 and being even a little behind can be somewhat painful.

 

Derek

 





From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Diego
Cadenas
Sent: Tuesday, August 15, 2006 9:31 AM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Light error 0216





 



I tested the same files with version 2.0.3309.0 and I didn't have
any problems.  Just FYI for those of you using 3.0.1821.0





 





 



Diego
Cadenas

Web
Application Developer

www.bsecure.com

850.275.1010
xt.7208  Phone

850.362.4303
xt.7501  Fax  



 

-- Internet Email
Confidentiality Statement --
Information contained in this e-mail message is intended only for the
individual to whom it is addressed and is private and confidential. If you are
not the intended recipient, or the employee or agent responsible for delivering
this message to the intended recipient, any dissemination, distribution or
copying of this communication is strictly prohibited. If you have received this
message in error, please kindly destroy it and notify the sender immediately by
reply e-mail. Thank you for your cooperation.



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Diego Cadenas
Sent: Tuesday, August 15, 2006 11:02 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Light error 0216



I
downloaded the 3.0 version of votive which comes with WiX's core files. For
some reason everytime I try to use light I get the following error:





 





"light.exe
: error LGHT0216 : An unexpected Win32 exception occurred: The system cannot
open the device or file specified"





 





First,
I got this error trying to create merge modules. First I rebuilt my
assemblies to discart dll corruption.  i made sure my assembly
attribute for "file" is set to ".net". I also made
sure that my dll's and merge modules are under the same directory. 





 





Then
I tried to create the msi without msm's, just a direct reference to the dll in
question. Same error.





 





Finally
I downloaded the "first sample" from Gábor.  Same light
error showed up.





 





I am doing something stupidly wrong?





 





the
light version i got is 3.0.1821.0





 





Thanks 





 



Diego
Cadenas

Web
Application Developer

www.bsecure.com

850.275.1010
xt.7208  Phone

850.362.4303
xt.7501  Fax  



 

-- Internet Email
Confidentiality Statement --
Information contained in this e-mail message is intended only for the
individual to whom it is addressed and is private and confidential. If you are
not the intended recipient, or the employee or agent responsible for delivering
this message to the intended recipient, any dissemination, distribution or
copying of this communication is strictly prohibited. If you have received this
message in error, please kindly destroy it and notify the sender immediately by
reply e-mail. Thank you for your cooperation.



 










-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Uninstalling does nothing

2006-08-15 Thread Magus

Well with certain things removed I could. IE Company Info

Dana Gutride wrote:
> 
> Would you be able to attach a log of the failed uninstall to your
> response?
> 
> Dana
> 
> On 8/15/06, Magus <[EMAIL PROTECTED]> wrote:
>>
>>
>> There is no space before "Remove" that was just a quick mock up of what
>> my
>> program code looks like.  But I did check my code to make sure.
>> Probably should have just copy paste before but here are the actual lines
>> > Width
>> ="[BW]"
>>  Height ="[BH]" Default ="no" Text ="[REMOVE]">
>> 1
>> 1
>> 
>>
>>
>> Dana Gutride wrote:
>> >
>> > Your code below seems to have lost a few characters that are necessary,
>> is
>> > there really a space before Remove?
>> >
>> >
>> > On 8/15/06, Magus <[EMAIL PROTECTED]> wrote:
>> >>
>> >>
>> >> I have that control in but the Id = Uninstall/Text = Uninstall
>> >> > ="[INS_Y]"
>> >> Width = "[BW]" Height = "[BH]" Text = "[REMOVE]">
>> >> 1> >> 
>> >> 
>> >> It doesn't fail when I do this, it for some reason still thinks it
>> should
>> >> be
>> >> installing.
>> >>
>> >> It failed after I checked the log and thought I should change the
>> ACTION
>> >> Property to UNINSTALL or REMOVE.
>> >>
>> >>
>> >>
>> >> Dana Gutride wrote:
>> >> >
>> >> > On your custom dialog, do you have a control that does something
>> like
>> >> > what's
>> >> > outlined below?
>> >> >
>> >> > > >> > Height="17" Text="Remove">
>> >> >   1
>> >> > 
>> >> >
>> >> > When you do this, does the uninstall still fail?  If so where is it
>> >> > failing
>> >> > and what is the specific error message in the log?
>> >> >
>> >> > On 8/15/06, Magus <[EMAIL PROTECTED]> wrote:
>> >> >>
>> >> >>
>> >> >> Add/Remove programs does remove the application.  But Uninstalling
>> >> >> doen't.
>> >> >> The Log says ExecuteAction and Action are both = INSTALL, when I am
>> >> >> trying
>> >> >> to uninstall, but when I changed those it broke and ended
>> prematurely.
>> >> >> So
>> >> >> its getting pretty confusing and I have not found a tutorial for
>> >> >> uninstalling so I thought that maybe its a simple thing to do.
>> >> >>
>> >> >> Dana Gutride wrote:
>> >> >> >
>> >> >> > What does the msi log say is happening when you try to uninstall?
>> >> >> Also,
>> >> >> > what happens if you use add/remove programs to remove your
>> program?
>> >> >> >
>> >> >> > Dana
>> >> >> >
>> >> >> > On 8/14/06, Magus < [EMAIL PROTECTED]> wrote:
>> >> >> >>
>> >> >> >>
>> >> >> >> My app was installed by the MSI.  I am not using the WixUI_xxx
>> or
>> >> any
>> >> >> of
>> >> >> >> those standard UI's I created my own.  I install the game using
>> the
>> >> >> .msi
>> >> >> >> The I want to see if I can uninstall it using the .msi.  When I
>> do
>> >> it
>> >> >> >> opens
>> >> >> >> and I have a dialog condition only to run if the program is
>> >> installed
>> >> >> >> already.  I was using orca to look at the what is created with
>> >> >> >> WixUI_Mondo
>> >> >> >> to see if there were anything I should try and I say a > >> Event
>> >> >> =
>> >> >> >> "Remove" Value = "ALL"> type setup but that didn't seem to lead
>> to
>> >> >> >> anything
>> >> >> >> as far at removing the product.  Anyway my product doesnt' go
>> away
>> >> >> after
>> >> >> >> trying to make it disappear
>> >> >> >>
>> >> >> >> Dana Gutride wrote:
>> >> >> >> >
>> >> >> >> > If your app wasn't installed by an MSI before hand, you'll
>> need
>> a
>> >> >> >> custom
>> >> >> >> > action to handle this for you.  You will also need a way of
>> >> >> >> conditioning
>> >> >> >> > the
>> >> >> >> > custom action to run only when your app is found.  Searching
>> for
>> >> a
>> >>
>> >> >> >> > registry
>> >> >> >> > key might be something to look into.  If you had previously
>> >> >> installed
>> >> >> >> with
>> >> >> >> > an MSI and included an upgrade code, then the WiX tutorial can
>> >> help
>> >> >> you
>> >> >> >> > with
>> >> >> >> > upgrading that version.
>> >> >> >> >
>> >> >> >> > Dana
>> >> >> >> >
>> >> >> >> > On 8/14/06, Magus < [EMAIL PROTECTED]> wrote:
>> >> >> >> >>
>> >> >> >> >>
>> >> >> >> >> I am trying to make my .msi uninstall my app if its already
>> on
>> >> the
>> >> >> >> users
>> >> >> >> >> computer, the problem is I don't know what makes that happen.
>> >> Is
>> >> >> >> there
>> >> >> >> a
>> >> >> >> >> special property or something I need to do in order to make
>> it
>> >> >> >> uninstall
>> >> >> >> >> the
>> >> >> >> >> app
>> >> >> >> >> --
>> >> >> >> >> View this message in context:
>> >> >> >> >>
>> >> >> >>
>> >> >>
>> >>
>> http://www.nabble.com/Uninstalling-does-nothing-tf2104998.html#a5801674
>> >> >> >> >> Sent from the wix-users forum at Nabble.com.
>> >> >> >> >>
>> >> >> >> >>
>> >> >> >> >>
>> >> >> >>
>> >> >>
>> >>
>> -
>> >> >> >> >> Using Tomcat but need to do more? Need to support web
>> services,
>> >> >> >> security?
>> >> >> >> >> Get stuff done quickly with pre-integrated t

Re: [WiX-users] Uninstalling does nothing

2006-08-15 Thread Dana Gutride
Would you be able to attach a log of the failed uninstall to your response?DanaOn 8/15/06, Magus <[EMAIL PROTECTED]
> wrote:There is no space before "Remove" that was just a quick mock up of what my
program code looks like.  But I did check my code to make sure.Probably should have just copy paste before but here are the actual lines="[BW]" Height ="[BH]" Default ="no" Text ="[REMOVE]">11
Dana Gutride wrote:>> Your code below seems to have lost a few characters that are necessary, is> there really a space before Remove?>>> On 8/15/06, Magus <
[EMAIL PROTECTED]> wrote:>> I have that control in but the Id = Uninstall/Text = Uninstall>> >> Width = "[BW]" Height = "[BH]" Text = "[REMOVE]">>> 1>> 
>> >> It doesn't fail when I do this, it for some reason still thinks it should>> be>> installing. It failed after I checked the log and thought I should change the ACTION
>> Property to UNINSTALL or REMOVE. Dana Gutride wrote:>> >>> > On your custom dialog, do you have a control that does something like
>> > what's>> > outlined below?>> >>> > >> > Height="17" Text="Remove">
>> >   1>> > >> >>> > When you do this, does the uninstall still fail?  If so where is it
>> > failing>> > and what is the specific error message in the log?>> >>> > On 8/15/06, Magus <[EMAIL PROTECTED]> wrote:
>>   >> Add/Remove programs does remove the application.  But Uninstalling>> >> doen't.>> >> The Log says ExecuteAction and Action are both = INSTALL, when I am
>> >> trying>> >> to uninstall, but when I changed those it broke and ended prematurely.>> >> So>> >> its getting pretty confusing and I have not found a tutorial for
>> >> uninstalling so I thought that maybe its a simple thing to do.>>  >> Dana Gutride wrote:>> >> >>> >> > What does the msi log say is happening when you try to uninstall?
>> >> Also,>> >> > what happens if you use add/remove programs to remove your program?>> >> >>> >> > Dana>> >> >>> >> > On 8/14/06, Magus < 
[EMAIL PROTECTED]> wrote:>> >>  >>  >> >> My app was installed by the MSI.  I am not using the WixUI_xxx or
>> any>> >> of>> >> >> those standard UI's I created my own.  I install the game using the>> >> .msi>> >> >> The I want to see if I can uninstall it using the .msi.  When I do
>> it>> >> >> opens>> >> >> and I have a dialog condition only to run if the program is>> installed>> >> >> already.  I was using orca to look at the what is created with
>> >> >> WixUI_Mondo>> >> >> to see if there were anything I should try and I say a >> Event>> >> =>> >> >> "Remove" Value = "ALL"> type setup but that didn't seem to lead to
>> >> >> anything>> >> >> as far at removing the product.  Anyway my product doesnt' go away>> >> after>> >> >> trying to make it disappear
>> >>  >> >> Dana Gutride wrote:>> >> >> >>> >> >> > If your app wasn't installed by an MSI before hand, you'll need a>> >> >> custom
>> >> >> > action to handle this for you.  You will also need a way of>> >> >> conditioning>> >> >> > the>> >> >> > custom action to run only when your app is found.  Searching for
>> a >> >> > registry>> >> >> > key might be something to look into.  If you had previously>> >> installed>> >> >> with
>> >> >> > an MSI and included an upgrade code, then the WiX tutorial can>> help>> >> you>> >> >> > with>> >> >> > upgrading that version.
>> >> >> >>> >> >> > Dana>> >> >> >>> >> >> > On 8/14/06, Magus < [EMAIL PROTECTED]
> wrote:>> >> >>  >> >>  >> >> >> I am trying to make my .msi uninstall my app if its already on>> the>> >> >> users
>> >> >> >> computer, the problem is I don't know what makes that happen.>> Is>> >> >> there>> >> >> a>> >> >> >> special property or something I need to do in order to make it
>> >> >> uninstall>> >> >> >> the>> >> >> >> app>> >> >> >> -->> >> >> >> View this message in context:
>> >> >>  >>   http://www.nabble.com/Uninstalling-does-nothing-tf2104998.html#a5801674
>> >> >> >> Sent from the wix-users forum at Nabble.com.>> >> >>  >> >>  >> >> >>
>> >>   ->> >> >> >> Using Tomcat but need to do more? Need to support web services,
>> >> >> security?>> >> >> >> Get stuff done quickly with pre-integrated technology to make>> your>> >> job>> >> >> >> easier
>> >> >> >> Download IBM WebSphere Application Server v.1.0.1 based on>> Apache>> >> >> >> Geronimo>> >> >>  >> >>
>>  http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>> >> >> >> ___>> >> >> >> WiX-users mailing list>> >> >> >> 
WiX-users@lists.sourceforge.net>> >> >> >> https://lists.sourceforge.net/lists/listinfo/wix-users>> >> >> >>
>> >> >> >>> >> >> >>> >>   ->> >> >> > Using Tomcat but need to do more? Need to support web services,
>> >> >> security?>> >> >> > Get stuff done quickly with pre-integrated technol

Re: [WiX-users] Uninstalling does nothing

2006-08-15 Thread Magus

There is no space before "Remove" that was just a quick mock up of what my
program code looks like.  But I did check my code to make sure. 
Probably should have just copy paste before but here are the actual lines

1   

1



Dana Gutride wrote:
> 
> Your code below seems to have lost a few characters that are necessary, is
> there really a space before Remove?
> 
> 
> On 8/15/06, Magus <[EMAIL PROTECTED]> wrote:
>>
>>
>> I have that control in but the Id = Uninstall/Text = Uninstall
>> > Width = "[BW]" Height = "[BH]" Text = "[REMOVE]">
>> 1> 
>> 
>> It doesn't fail when I do this, it for some reason still thinks it should
>> be
>> installing.
>>
>> It failed after I checked the log and thought I should change the ACTION
>> Property to UNINSTALL or REMOVE.
>>
>>
>>
>> Dana Gutride wrote:
>> >
>> > On your custom dialog, do you have a control that does something like
>> > what's
>> > outlined below?
>> >
>> > > > Height="17" Text="Remove">
>> >   1
>> > 
>> >
>> > When you do this, does the uninstall still fail?  If so where is it
>> > failing
>> > and what is the specific error message in the log?
>> >
>> > On 8/15/06, Magus <[EMAIL PROTECTED]> wrote:
>> >>
>> >>
>> >> Add/Remove programs does remove the application.  But Uninstalling
>> >> doen't.
>> >> The Log says ExecuteAction and Action are both = INSTALL, when I am
>> >> trying
>> >> to uninstall, but when I changed those it broke and ended prematurely.
>> >> So
>> >> its getting pretty confusing and I have not found a tutorial for
>> >> uninstalling so I thought that maybe its a simple thing to do.
>> >>
>> >> Dana Gutride wrote:
>> >> >
>> >> > What does the msi log say is happening when you try to uninstall?
>> >> Also,
>> >> > what happens if you use add/remove programs to remove your program?
>> >> >
>> >> > Dana
>> >> >
>> >> > On 8/14/06, Magus < [EMAIL PROTECTED]> wrote:
>> >> >>
>> >> >>
>> >> >> My app was installed by the MSI.  I am not using the WixUI_xxx or
>> any
>> >> of
>> >> >> those standard UI's I created my own.  I install the game using the
>> >> .msi
>> >> >> The I want to see if I can uninstall it using the .msi.  When I do
>> it
>> >> >> opens
>> >> >> and I have a dialog condition only to run if the program is
>> installed
>> >> >> already.  I was using orca to look at the what is created with
>> >> >> WixUI_Mondo
>> >> >> to see if there were anything I should try and I say a > Event
>> >> =
>> >> >> "Remove" Value = "ALL"> type setup but that didn't seem to lead to
>> >> >> anything
>> >> >> as far at removing the product.  Anyway my product doesnt' go away
>> >> after
>> >> >> trying to make it disappear
>> >> >>
>> >> >> Dana Gutride wrote:
>> >> >> >
>> >> >> > If your app wasn't installed by an MSI before hand, you'll need a
>> >> >> custom
>> >> >> > action to handle this for you.  You will also need a way of
>> >> >> conditioning
>> >> >> > the
>> >> >> > custom action to run only when your app is found.  Searching for
>> a
>>
>> >> >> > registry
>> >> >> > key might be something to look into.  If you had previously
>> >> installed
>> >> >> with
>> >> >> > an MSI and included an upgrade code, then the WiX tutorial can
>> help
>> >> you
>> >> >> > with
>> >> >> > upgrading that version.
>> >> >> >
>> >> >> > Dana
>> >> >> >
>> >> >> > On 8/14/06, Magus < [EMAIL PROTECTED]> wrote:
>> >> >> >>
>> >> >> >>
>> >> >> >> I am trying to make my .msi uninstall my app if its already on
>> the
>> >> >> users
>> >> >> >> computer, the problem is I don't know what makes that happen. 
>> Is
>> >> >> there
>> >> >> a
>> >> >> >> special property or something I need to do in order to make it
>> >> >> uninstall
>> >> >> >> the
>> >> >> >> app
>> >> >> >> --
>> >> >> >> View this message in context:
>> >> >> >>
>> >> >>
>> >>
>> http://www.nabble.com/Uninstalling-does-nothing-tf2104998.html#a5801674
>> >> >> >> Sent from the wix-users forum at Nabble.com.
>> >> >> >>
>> >> >> >>
>> >> >> >>
>> >> >>
>> >>
>> -
>> >> >> >> Using Tomcat but need to do more? Need to support web services,
>> >> >> security?
>> >> >> >> Get stuff done quickly with pre-integrated technology to make
>> your
>> >> job
>> >> >> >> easier
>> >> >> >> Download IBM WebSphere Application Server v.1.0.1 based on
>> Apache
>> >> >> >> Geronimo
>> >> >> >>
>> >> >>
>> >>
>> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>> >> >> >> ___
>> >> >> >> WiX-users mailing list
>> >> >> >> WiX-users@lists.sourceforge.net
>> >> >> >> https://lists.sourceforge.net/lists/listinfo/wix-users
>> >> >> >>
>> >> >> >
>> >> >> >
>> >> >>
>> >>
>> -
>> >> >> > Using Tomcat but need to do more? Need to support web services,
>> >> >> security?
>> >> >> > Get stuff done quickly with pre-integrated technology to make
>> your
>

Re: [WiX-users] Uninstalling does nothing

2006-08-15 Thread Dana Gutride
Your code below seems to have lost a few characters that are necessary, is there really a space before Remove? On 8/15/06, Magus <
[EMAIL PROTECTED]> wrote:
I have that control in but the Id = Uninstall/Text = UninstallWidth = "[BW]" Height = "[BH]" Text = "[REMOVE]">
1It doesn't fail when I do this, it for some reason still thinks it should be
installing.It failed after I checked the log and thought I should change the ACTIONProperty to UNINSTALL or REMOVE.Dana Gutride wrote:>> On your custom dialog, do you have a control that does something like
> what's> outlined below?>> > Height="17" Text="Remove">
>   1> >> When you do this, does the uninstall still fail?  If so where is it> failing
> and what is the specific error message in the log?>> On 8/15/06, Magus <[EMAIL PROTECTED]
> wrote:>> Add/Remove programs does remove the application.  But Uninstalling
>> doen't.>> The Log says ExecuteAction and Action are both = INSTALL, when I am>> trying>> to uninstall, but when I changed those it broke and ended prematurely.>> So

>> its getting pretty confusing and I have not found a tutorial for>> uninstalling so I thought that maybe its a simple thing to do. Dana Gutride wrote:>> >>> > What does the msi log say is happening when you try to uninstall?
>> Also,>> > what happens if you use add/remove programs to remove your program?>> >>> > Dana>> >>> > On 8/14/06, Magus <

[EMAIL PROTECTED]> wrote:>>   >> My app was installed by the MSI.  I am not using the WixUI_xxx or any>> of>> >> those standard UI's I created my own.  I install the game using the
>> .msi>> >> The I want to see if I can uninstall it using the .msi.  When I do it>> >> opens>> >> and I have a dialog condition only to run if the program is installed
>> >> already.  I was using orca to look at the what is created with>> >> WixUI_Mondo>> >> to see if there were anything I should try and I say a >> =
>> >> "Remove" Value = "ALL"> type setup but that didn't seem to lead to>> >> anything>> >> as far at removing the product.  Anyway my product doesnt' go away
>> after>> >> trying to make it disappear>>  >> Dana Gutride wrote:>> >> >>> >> > If your app wasn't installed by an MSI before hand, you'll need a
>> >> custom>> >> > action to handle this for you.  You will also need a way of>> >> conditioning>> >> > the>> >> > custom action to run only when your app is found.  Searching for a
>> >> > registry>> >> > key might be something to look into.  If you had previously>> installed>> >> with>> >> > an MSI and included an upgrade code, then the WiX tutorial can help
>> you>> >> > with>> >> > upgrading that version.>> >> >>> >> > Dana>> >> >>> >> > On 8/14/06, Magus <
[EMAIL PROTECTED]> wrote:>> >>  >>  >> >> I am trying to make my .msi uninstall my app if its already on the
>> >> users>> >> >> computer, the problem is I don't know what makes that happen.  Is>> >> there>> >> a>> >> >> special property or something I need to do in order to make it
>> >> uninstall>> >> >> the>> >> >> app>> >> >> -->> >> >> View this message in context:>> >> >>
>>  http://www.nabble.com/Uninstalling-does-nothing-tf2104998.html#a5801674
>> >> >> Sent from the wix-users forum at 
Nabble.com.>> >>  >>  >>  >>
>> -
>> >> >> Using Tomcat but need to do more? Need to support web services,>> >> security?>> >> >> Get stuff done quickly with pre-integrated technology to make your
>> job>> >> >> easier>> >> >> Download IBM WebSphere Application Server v.1.0.1 based on Apache>> >> >> Geronimo>> >> >>

>>  http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>> >> >> ___
>> >> >> WiX-users mailing list>> >> >> WiX-users@lists.sourceforge.net
>> >> >> 
https://lists.sourceforge.net/lists/listinfo/wix-users>> >>  >> >>> >> >>>  -
>> >> > Using Tomcat but need to do more? Need to support web services,>> >> security?>> >> > Get stuff done quickly with pre-integrated technology to make your>> job
>> >> > easier>> >> > Download IBM WebSphere Application Server v.1.0.1 based on Apache>> >> Geronimo>> >> >>>  

http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642>> >> > ___>> >> > WiX-users mailing list>> >> > 
WiX-users@lists.sourceforge.net>> >> > 
https://lists.sourceforge.net/lists/listinfo/wix-users
>> >> >>> >> >>>  >> -->> >> View this message in context:>>  

http://www.nabble.com/Uninstalling-does-nothing-tf2104998.html#a5804967>> >> Sent from the wix-users forum at 
Nabble.com.>>   >>
>> ->> >> Using Tomcat but need to do more? Need to support web services,>> security?>> >> Get stuff done quickly with pre-integrated technology to make your job
>> >> easier>> >> Download

Re: [WiX-users] Uninstalling does nothing

2006-08-15 Thread Magus

I have that control in but the Id = Uninstall/Text = Uninstall

1

It doesn't fail when I do this, it for some reason still thinks it should be
installing.

It failed after I checked the log and thought I should change the ACTION
Property to UNINSTALL or REMOVE.  



Dana Gutride wrote:
> 
> On your custom dialog, do you have a control that does something like
> what's
> outlined below?
> 
>  Height="17" Text="Remove">
>   1
> 
> 
> When you do this, does the uninstall still fail?  If so where is it
> failing
> and what is the specific error message in the log?
> 
> On 8/15/06, Magus <[EMAIL PROTECTED]> wrote:
>>
>>
>> Add/Remove programs does remove the application.  But Uninstalling
>> doen't.
>> The Log says ExecuteAction and Action are both = INSTALL, when I am
>> trying
>> to uninstall, but when I changed those it broke and ended prematurely. 
>> So
>> its getting pretty confusing and I have not found a tutorial for
>> uninstalling so I thought that maybe its a simple thing to do.
>>
>> Dana Gutride wrote:
>> >
>> > What does the msi log say is happening when you try to uninstall? 
>> Also,
>> > what happens if you use add/remove programs to remove your program?
>> >
>> > Dana
>> >
>> > On 8/14/06, Magus <[EMAIL PROTECTED]> wrote:
>> >>
>> >>
>> >> My app was installed by the MSI.  I am not using the WixUI_xxx or any
>> of
>> >> those standard UI's I created my own.  I install the game using the
>> .msi
>> >> The I want to see if I can uninstall it using the .msi.  When I do it
>> >> opens
>> >> and I have a dialog condition only to run if the program is installed
>> >> already.  I was using orca to look at the what is created with
>> >> WixUI_Mondo
>> >> to see if there were anything I should try and I say a > =
>> >> "Remove" Value = "ALL"> type setup but that didn't seem to lead to
>> >> anything
>> >> as far at removing the product.  Anyway my product doesnt' go away
>> after
>> >> trying to make it disappear
>> >>
>> >> Dana Gutride wrote:
>> >> >
>> >> > If your app wasn't installed by an MSI before hand, you'll need a
>> >> custom
>> >> > action to handle this for you.  You will also need a way of
>> >> conditioning
>> >> > the
>> >> > custom action to run only when your app is found.  Searching for a
>> >> > registry
>> >> > key might be something to look into.  If you had previously
>> installed
>> >> with
>> >> > an MSI and included an upgrade code, then the WiX tutorial can help
>> you
>> >> > with
>> >> > upgrading that version.
>> >> >
>> >> > Dana
>> >> >
>> >> > On 8/14/06, Magus <[EMAIL PROTECTED]> wrote:
>> >> >>
>> >> >>
>> >> >> I am trying to make my .msi uninstall my app if its already on the
>> >> users
>> >> >> computer, the problem is I don't know what makes that happen.  Is
>> >> there
>> >> a
>> >> >> special property or something I need to do in order to make it
>> >> uninstall
>> >> >> the
>> >> >> app
>> >> >> --
>> >> >> View this message in context:
>> >> >>
>> >>
>> http://www.nabble.com/Uninstalling-does-nothing-tf2104998.html#a5801674
>> >> >> Sent from the wix-users forum at Nabble.com.
>> >> >>
>> >> >>
>> >> >>
>> >>
>> -
>> >> >> Using Tomcat but need to do more? Need to support web services,
>> >> security?
>> >> >> Get stuff done quickly with pre-integrated technology to make your
>> job
>> >> >> easier
>> >> >> Download IBM WebSphere Application Server v.1.0.1 based on Apache
>> >> >> Geronimo
>> >> >>
>> >>
>> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>> >> >> ___
>> >> >> WiX-users mailing list
>> >> >> WiX-users@lists.sourceforge.net
>> >> >> https://lists.sourceforge.net/lists/listinfo/wix-users
>> >> >>
>> >> >
>> >> >
>> >>
>> -
>> >> > Using Tomcat but need to do more? Need to support web services,
>> >> security?
>> >> > Get stuff done quickly with pre-integrated technology to make your
>> job
>> >> > easier
>> >> > Download IBM WebSphere Application Server v.1.0.1 based on Apache
>> >> Geronimo
>> >> >
>> >>
>> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>> >> > ___
>> >> > WiX-users mailing list
>> >> > WiX-users@lists.sourceforge.net
>> >> > https://lists.sourceforge.net/lists/listinfo/wix-users
>> >> >
>> >> >
>> >>
>> >> --
>> >> View this message in context:
>> >>
>> http://www.nabble.com/Uninstalling-does-nothing-tf2104998.html#a5804967
>> >> Sent from the wix-users forum at Nabble.com.
>> >>
>> >>
>> >>
>> -
>> >> Using Tomcat but need to do more? Need to support web services,
>> security?
>> >> Get stuff done quickly with pre-integrated technology to make your job
>> >> easier
>> >> Download IBM WebSphere Application Server v.1.0.1 based on Apache
>> >> Geronimo
>> >>
>> http://

Re: [WiX-users] Uninstalling does nothing

2006-08-15 Thread Dana Gutride
On your custom dialog, do you have a control that does something like what's outlined below?
  1When you do this, does the uninstall still fail?  If so where is it failing and what is the specific error message in the log?
On 8/15/06, Magus <[EMAIL PROTECTED]> wrote:
Add/Remove programs does remove the application.  But Uninstalling doen't.The Log says ExecuteAction and Action are both = INSTALL, when I am tryingto uninstall, but when I changed those it broke and ended prematurely.  So
its getting pretty confusing and I have not found a tutorial foruninstalling so I thought that maybe its a simple thing to do.Dana Gutride wrote:>> What does the msi log say is happening when you try to uninstall?  Also,
> what happens if you use add/remove programs to remove your program?>> Dana>> On 8/14/06, Magus <[EMAIL PROTECTED]> wrote:>>
 My app was installed by the MSI.  I am not using the WixUI_xxx or any of>> those standard UI's I created my own.  I install the game using the .msi>> The I want to see if I can uninstall it using the .msi.  When I do it
>> opens>> and I have a dialog condition only to run if the program is installed>> already.  I was using orca to look at the what is created with>> WixUI_Mondo>> to see if there were anything I should try and I say a >> "Remove" Value = "ALL"> type setup but that didn't seem to lead to>> anything>> as far at removing the product.  Anyway my product doesnt' go away after>> trying to make it disappear
 Dana Gutride wrote:>> >>> > If your app wasn't installed by an MSI before hand, you'll need a>> custom>> > action to handle this for you.  You will also need a way of
>> conditioning>> > the>> > custom action to run only when your app is found.  Searching for a>> > registry>> > key might be something to look into.  If you had previously installed
>> with>> > an MSI and included an upgrade code, then the WiX tutorial can help you>> > with>> > upgrading that version.>> >>> > Dana>> >
>> > On 8/14/06, Magus <[EMAIL PROTECTED]> wrote:>>   >> I am trying to make my .msi uninstall my app if its already on the
>> users>> >> computer, the problem is I don't know what makes that happen.  Is>> there>> a>> >> special property or something I need to do in order to make it
>> uninstall>> >> the>> >> app>> >> -->> >> View this message in context:>>  
http://www.nabble.com/Uninstalling-does-nothing-tf2104998.html#a5801674>> >> Sent from the wix-users forum at Nabble.com.>>   >>
>> ->> >> Using Tomcat but need to do more? Need to support web services,>> security?>> >> Get stuff done quickly with pre-integrated technology to make your job
>> >> easier>> >> Download IBM WebSphere Application Server v.1.0.1 based on Apache>> >> Geronimo>>  
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642>> >> ___>> >> WiX-users mailing list>> >> 
WiX-users@lists.sourceforge.net>> >> https://lists.sourceforge.net/lists/listinfo/wix-users
>>  >>> >>> ->> > Using Tomcat but need to do more? Need to support web services,
>> security?>> > Get stuff done quickly with pre-integrated technology to make your job>> > easier>> > Download IBM WebSphere Application Server v.1.0.1 based on Apache
>> Geronimo>> >>> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>> > ___>> > WiX-users mailing list>> > WiX-users@lists.sourceforge.net>> > 
https://lists.sourceforge.net/lists/listinfo/wix-users>> >>> > -->> View this message in context:
>> http://www.nabble.com/Uninstalling-does-nothing-tf2104998.html#a5804967>> Sent from the wix-users forum at 
Nabble.com.>> ->> Using Tomcat but need to do more? Need to support web services, security?>> Get stuff done quickly with pre-integrated technology to make your job
>> easier>> Download IBM WebSphere Application Server v.1.0.1 based on Apache>> Geronimo>> 
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642>> ___>> WiX-users mailing list>> 
WiX-users@lists.sourceforge.net>> https://lists.sourceforge.net/lists/listinfo/wix-users -
> Using Tomcat but need to do more? Need to support web services, security?> Get stuff done quickly with pre-integrated technology to make your job> easier> Download IBM WebSphere Application Server 
v.1.0.1 based on Apache Geronimo> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> ___> WiX-users mailing list> WiX-users@lists.sourceforge.net> 
https://lists.sourceforge.net/lists/listinfo/wix-users>>--View this message in context: http://www.nabble.com/U

Re: [WiX-users] Uninstalling does nothing

2006-08-15 Thread Magus

Add/Remove programs does remove the application.  But Uninstalling doen't. 
The Log says ExecuteAction and Action are both = INSTALL, when I am trying
to uninstall, but when I changed those it broke and ended prematurely.  So
its getting pretty confusing and I have not found a tutorial for
uninstalling so I thought that maybe its a simple thing to do.

Dana Gutride wrote:
> 
> What does the msi log say is happening when you try to uninstall?  Also,
> what happens if you use add/remove programs to remove your program?
> 
> Dana
> 
> On 8/14/06, Magus <[EMAIL PROTECTED]> wrote:
>>
>>
>> My app was installed by the MSI.  I am not using the WixUI_xxx or any of
>> those standard UI's I created my own.  I install the game using the .msi
>> The I want to see if I can uninstall it using the .msi.  When I do it
>> opens
>> and I have a dialog condition only to run if the program is installed
>> already.  I was using orca to look at the what is created with
>> WixUI_Mondo
>> to see if there were anything I should try and I say a > "Remove" Value = "ALL"> type setup but that didn't seem to lead to
>> anything
>> as far at removing the product.  Anyway my product doesnt' go away after
>> trying to make it disappear
>>
>> Dana Gutride wrote:
>> >
>> > If your app wasn't installed by an MSI before hand, you'll need a
>> custom
>> > action to handle this for you.  You will also need a way of
>> conditioning
>> > the
>> > custom action to run only when your app is found.  Searching for a
>> > registry
>> > key might be something to look into.  If you had previously installed
>> with
>> > an MSI and included an upgrade code, then the WiX tutorial can help you
>> > with
>> > upgrading that version.
>> >
>> > Dana
>> >
>> > On 8/14/06, Magus <[EMAIL PROTECTED]> wrote:
>> >>
>> >>
>> >> I am trying to make my .msi uninstall my app if its already on the
>> users
>> >> computer, the problem is I don't know what makes that happen.  Is
>> there
>> a
>> >> special property or something I need to do in order to make it
>> uninstall
>> >> the
>> >> app
>> >> --
>> >> View this message in context:
>> >>
>> http://www.nabble.com/Uninstalling-does-nothing-tf2104998.html#a5801674
>> >> Sent from the wix-users forum at Nabble.com.
>> >>
>> >>
>> >>
>> -
>> >> Using Tomcat but need to do more? Need to support web services,
>> security?
>> >> Get stuff done quickly with pre-integrated technology to make your job
>> >> easier
>> >> Download IBM WebSphere Application Server v.1.0.1 based on Apache
>> >> Geronimo
>> >>
>> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>> >> ___
>> >> WiX-users mailing list
>> >> WiX-users@lists.sourceforge.net
>> >> https://lists.sourceforge.net/lists/listinfo/wix-users
>> >>
>> >
>> >
>> -
>> > Using Tomcat but need to do more? Need to support web services,
>> security?
>> > Get stuff done quickly with pre-integrated technology to make your job
>> > easier
>> > Download IBM WebSphere Application Server v.1.0.1 based on Apache
>> Geronimo
>> >
>> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>> > ___
>> > WiX-users mailing list
>> > WiX-users@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/wix-users
>> >
>> >
>>
>> --
>> View this message in context:
>> http://www.nabble.com/Uninstalling-does-nothing-tf2104998.html#a5804967
>> Sent from the wix-users forum at Nabble.com.
>>
>>
>> -
>> Using Tomcat but need to do more? Need to support web services, security?
>> Get stuff done quickly with pre-integrated technology to make your job
>> easier
>> Download IBM WebSphere Application Server v.1.0.1 based on Apache
>> Geronimo
>> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>> ___
>> WiX-users mailing list
>> WiX-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wix-users
>>
> 
> -
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Uninstalling-does-nothing-tf2104998.html#a5817420
Sent from the wix-users forum at Nabble.com.


--

Re: [WiX-users] Light error 0216

2006-08-15 Thread Diego Cadenas
Title: Message



I tested the same files with version 2.0.3309.0 
and I didn't have any problems.  Just FYI for those of you using 
3.0.1821.0
 
 
Diego Cadenas
Web Application Developer
www.bsecure.com
850.275.1010 xt.7208  
Phone
850.362.4303 xt.7501  
Fax  

 
-- Internet Email Confidentiality 
Statement --Information contained in this e-mail message is intended 
only for the individual to whom it is addressed and is private and confidential. 
If you are not the intended recipient, or the employee or agent responsible for 
delivering this message to the intended recipient, any dissemination, 
distribution or copying of this communication is strictly prohibited. If you 
have received this message in error, please kindly destroy it and notify the 
sender immediately by reply e-mail. Thank you for your cooperation.

  
  -Original Message-From: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On Behalf Of Diego 
  CadenasSent: Tuesday, August 15, 2006 11:02 AMTo: 
  wix-users@lists.sourceforge.netSubject: [WiX-users] Light error 
  0216
  I downloaded the 
  3.0 version of votive which comes with WiX's core files. For some reason 
  everytime I try to use light I get the following 
  error:
   
  "light.exe : error 
  LGHT0216 : An unexpected Win32 exception occurred: The system cannot open the 
  device or file specified"
   
  First, I got this 
  error trying to create merge modules. First I rebuilt my assemblies to 
  discart dll corruption.  i made sure my assembly attribute for 
  "file" is set to ".net". I also made sure that my dll's and merge modules are under 
  the same directory. 
   
  Then I tried to 
  create the msi without msm's, just a direct reference to the dll in question. 
  Same error.
   
  Finally I 
  downloaded the "first sample" from Gábor.  Same light error showed up.
   
  I am doing something stupidly 
  wrong?
   
  the light version 
  i got is 3.0.1821.0
   
  Thanks 
   
  Diego Cadenas
  Web Application Developer
  www.bsecure.com
  850.275.1010 xt.7208  
  Phone
  850.362.4303 xt.7501  
  Fax  
  
   
  -- Internet Email Confidentiality 
  Statement --Information contained in this e-mail message is 
  intended only for the individual to whom it is addressed and is private and 
  confidential. If you are not the intended recipient, or the employee or agent 
  responsible for delivering this message to the intended recipient, any 
  dissemination, distribution or copying of this communication is strictly 
  prohibited. If you have received this message in error, please kindly destroy 
  it and notify the sender immediately by reply e-mail. Thank you for your 
  cooperation.
   
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Light error 0216

2006-08-15 Thread Diego Cadenas
Title: Message



I downloaded the 3.0 
version of votive which comes with WiX's core files. For some reason everytime I 
try to use light I get the following error:
 
"light.exe : error 
LGHT0216 : An unexpected Win32 exception occurred: The system cannot open the 
device or file specified"
 
First, I got this 
error trying to create merge modules. First I rebuilt my assemblies to 
discart dll corruption.  i made sure my assembly attribute for "file" 
is set to ".net". I also made sure that my dll's and merge modules are under 
the same directory. 
 
Then I tried to 
create the msi without msm's, just a direct reference to the dll in question. 
Same error.
 
Finally I downloaded 
the "first sample" from Gábor.  Same 
light error showed up.
 
I am doing something stupidly 
wrong?
 
the light version i 
got is 3.0.1821.0
 
Thanks 
 
Diego Cadenas
Web Application Developer
www.bsecure.com
850.275.1010 xt.7208  
Phone
850.362.4303 xt.7501  
Fax  

 
-- Internet Email Confidentiality 
Statement --Information contained in this e-mail message is intended 
only for the individual to whom it is addressed and is private and confidential. 
If you are not the intended recipient, or the employee or agent responsible for 
delivering this message to the intended recipient, any dissemination, 
distribution or copying of this communication is strictly prohibited. If you 
have received this message in error, please kindly destroy it and notify the 
sender immediately by reply e-mail. Thank you for your cooperation.
 
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How to create shortcuts for files from MSM?

2006-08-15 Thread Rob Mensching
Why?  That's not really designed to work out well.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Peter G.
Sakhno
Sent: Tuesday, August 15, 2006 06:08
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] How to create shortcuts for files from MSM?

I want to create in MSI shortcuts for files from MSM File table?

I tried to use file key shown in Orca, such as 'FileID.MSM_GUID_HERE', but
during setup I got an error 2715 in log for that shortcut, which means "The
specified File key not found in the File table.", while the file with such
File key IS presented in the File table...

So how to do it?
What am I doing wrong?


--
Best regards,
Peter G. Sakhno
C-MAP RUSSIA Ltd
http://www.c-map.ru/

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job
easier Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] How to create shortcuts for files from MSM?

2006-08-15 Thread Peter G. Sakhno
I want to create in MSI shortcuts for files from MSM File table?

I tried to use file key shown in Orca, such as 'FileID.MSM_GUID_HERE', 
but during setup I got an error 2715 in log for that shortcut, which 
means "The specified File key not found in the File table.", while the 
file with such File key IS presented in the File table...

So how to do it?
What am I doing wrong?


-- 
Best regards,
Peter G. Sakhno
C-MAP RUSSIA Ltd
http://www.c-map.ru/

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Uninstalling does nothing

2006-08-15 Thread Dana Gutride
What does the msi log say is happening when you try to uninstall?  Also, what happens if you use add/remove programs to remove your program?DanaOn 8/14/06, 
Magus <[EMAIL PROTECTED]> wrote:
My app was installed by the MSI.  I am not using the WixUI_xxx or any ofthose standard UI's I created my own.  I install the game using the .msiThe I want to see if I can uninstall it using the .msi.  When I do it opens
and I have a dialog condition only to run if the program is installedalready.  I was using orca to look at the what is created with WixUI_Mondoto see if there were anything I should try and I say a "Remove" Value = "ALL"> type setup but that didn't seem to lead to anythingas far at removing the product.  Anyway my product doesnt' go away aftertrying to make it disappearDana Gutride wrote:
>> If your app wasn't installed by an MSI before hand, you'll need a custom> action to handle this for you.  You will also need a way of conditioning> the> custom action to run only when your app is found.  Searching for a
> registry> key might be something to look into.  If you had previously installed with> an MSI and included an upgrade code, then the WiX tutorial can help you> with> upgrading that version.
>> Dana>> On 8/14/06, Magus <[EMAIL PROTECTED]> wrote:>> I am trying to make my .msi uninstall my app if its already on the users
>> computer, the problem is I don't know what makes that happen.  Is there a>> special property or something I need to do in order to make it uninstall>> the>> app>> --
>> View this message in context:>> http://www.nabble.com/Uninstalling-does-nothing-tf2104998.html#a5801674>> Sent from the wix-users forum at 
Nabble.com.>> ->> Using Tomcat but need to do more? Need to support web services, security?
>> Get stuff done quickly with pre-integrated technology to make your job>> easier>> Download IBM WebSphere Application Server v.1.0.1 based on Apache>> Geronimo>> 
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642>> ___>> WiX-users mailing list>> 
WiX-users@lists.sourceforge.net>> https://lists.sourceforge.net/lists/listinfo/wix-users -
> Using Tomcat but need to do more? Need to support web services, security?> Get stuff done quickly with pre-integrated technology to make your job> easier> Download IBM WebSphere Application Server 
v.1.0.1 based on Apache Geronimo> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> ___> WiX-users mailing list> WiX-users@lists.sourceforge.net> 
https://lists.sourceforge.net/lists/listinfo/wix-users>>--View this message in context: http://www.nabble.com/Uninstalling-does-nothing-tf2104998.html#a5804967
Sent from the wix-users forum at Nabble.com.-Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___WiX-users mailing listWiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users