[WiX-users] how does Repair work?

2008-05-20 Thread Don Tasanasanta (Volt)
How exactly does repair work?

When choosing repair in maintenance mode what does Windows Installer do? Does 
it go back to the MSI logic and run through it again? Does it remember what was 
installed the first time and try to duplicate what was done?

Here's the scenario:
- Install product
- uninstall dependency that install has
- Try to repair product

Repair fails because dependency has been removed. Originally the component that 
fails has a conditional to not install if dependency is not present. But the 
dependency was present during the initial install and then later removed. So 
the dependency was gone during repair but the repair still tries to fix the 
component with the dependency and fails.

Any way around this?
-
This SF.net email is sponsored by: Microsoft 
Defy all challenges. Microsoft(R) Visual Studio 2008. 
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] finding .net 3.5 or greater

2008-05-19 Thread Don Tasanasanta (Volt)
How do you determine whether or not the version of .NET Framework on the 
machine is greater than 3.5?
-
This SF.net email is sponsored by: Microsoft 
Defy all challenges. Microsoft(R) Visual Studio 2008. 
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] finding .net 3.5 or greater

2008-05-19 Thread Don Tasanasanta (Volt)
I already use NETFRAMEWORK35 to determine if .net 3.5 is on the machine... what 
I'm really concerned with is the greater than part.

How do you test against the condition greater than or equal to 3.5

From: Neil Enns
Sent: Monday, May 19, 2008 3:38 PM
To: Don Tasanasanta (Volt); wix-users@lists.sourceforge.net
Subject: RE: finding .net 3.5 or greater

You can use the NetFxExtension that comes with WiX. 
http://www.wixwiki.com/index.php?title=NetFxExtension.

Add -ext WixNetFxExtension to both candle.exe and light.exe, then you can add a 
PropertyRef to NETFRAMEWORK35. There's an example on the above page of how it 
all works.

Neil

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Don Tasanasanta 
(Volt)
Sent: Monday, May 19, 2008 3:27 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] finding .net 3.5 or greater

How do you determine whether or not the version of .NET Framework on the 
machine is greater than 3.5?
-
This SF.net email is sponsored by: Microsoft 
Defy all challenges. Microsoft(R) Visual Studio 2008. 
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Error 1937

2008-05-13 Thread Don Tasanasanta (Volt)
This is not WiX specific but this does happen to installs authored in WiX as 
well

If you search the web for error 1937 you will see that there are many people 
out there encountering this error on many different products; including VS 
2008, MS Office, and .Net Framework. It happens at the very end of install and 
the same type of error message appears.

Does anyone have any experience with this? What is the cause? And most 
importantly... what is the solution?
-
This SF.net email is sponsored by: Microsoft 
Defy all challenges. Microsoft(R) Visual Studio 2008. 
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] FW: installing over another file

2008-05-08 Thread Don Tasanasanta (Volt)
I understand the install scenario with versioned files but what about 
installing over text files: xml, txt, log, ini, etc.

From what I can see there are no being done for timestamp  when installing 
over non-binary files. Is there a way to check for timestamp?

Aka:
If file the file on the machine is newer than the one being installed then keep 
the latest timestamp-ed file on the machine. if the file being installed is 
newer than the one on the machine then replace.
-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] installing over another file

2008-05-08 Thread Don Tasanasanta (Volt)
I understand the install scenario with versioned files but what about 
installing over text files: xml, txt, log, ini, etc.

From what I can see there are no being done for timestamp  when installing 
over non-binary files. Is there a way to check for timestamp?

Aka:
If file the file on the machine is newer than the one being installed then keep 
the latest timestamp-ed file on the machine. if the file being installed is 
newer than the one on the machine then replace.

-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] installing over another file

2008-05-07 Thread Don Tasanasanta (Volt)
I understand the install scenario with versioned files but what about 
installing over text files: xml, txt, log, ini, etc.

From what I can see there are no being done for timestamp  when installing 
over non-binary files. Is there a way to check for timestamp?

Aka:
If file the file on the machine is newer than the one being installed then keep 
the latest timestamp-ed file on the machine. if the file being installed is 
newer than the one on the machine then replace.
-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] updating the directory tree

2008-03-03 Thread Don Tasanasanta (Volt)
I run a custom action to change the value of a directory property. As I recall 
some follow up action needs to occur to update the feature tree to re-read the 
directory table with the new values.

What is the name of this action?
-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] defining one property before another

2008-02-21 Thread Don Tasanasanta (Volt)
I know there has to be a trick to this but...

How do you ensure that one property is defined before another property is 
defined?

I have a property that reads a value from the registry

And a second property that defines a directory based on the registry property

I want to make sure the reg property is defined before defining the directory 
property or else my directory will point to the wrong place.
-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Assembly=.net attribute in the File tag

2008-02-07 Thread Don Tasanasanta (Volt)
What exactly does the Assembly=.net attribute in the File tag do?

WiX help says:
Specifies if this File is a Win32 Assembly or .NET Assembly that needs to be 
installed into the Global Assembly Cache. If the value is '.net' or 'win32', 
this file must also be the key path of the Component. This attribute's value 
should be one of the following: .net , no , win32

Does this mean that if you mark an assembly as .net that install will try and 
add that assembly to the GAC? What if you don't want your assembly added to the 
GAC?

What is the default value for this attribute?
-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Assembly=.net attribute in the File tag

2008-02-07 Thread Don Tasanasanta (Volt)
What value should be assigned to the AssemblyApplication attribute?

From: Thomas Svare [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 07, 2008 1:46 PM
To: Don Tasanasanta (Volt); wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Assembly=.net attribute in the File tag

Don,

I can't answer your first question but the answer to your second question (What 
if you don't want your assembly added to the GAC?) is you need to use the 
attribute AssemblyApplication to have it installed outside the GAC.

Thanks,
Tom


From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Don Tasanasanta 
(Volt)
Sent: Thursday, February 07, 2008 4:34 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Assembly=.net attribute in the File tag

What exactly does the Assembly=.net attribute in the File tag do?

WiX help says:
Specifies if this File is a Win32 Assembly or .NET Assembly that needs to be 
installed into the Global Assembly Cache. If the value is '.net' or 'win32', 
this file must also be the key path of the Component. This attribute's value 
should be one of the following: .net , no , win32

Does this mean that if you mark an assembly as .net that install will try and 
add that assembly to the GAC? What if you don't want your assembly added to the 
GAC?

What is the default value for this attribute?
-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] CNDL1024 error using include files

2008-01-24 Thread Don Tasanasanta (Volt)
I'm getting the following error...

candle.exe : error CNDL0124 : An error has occurred that most likely indicates 
that the .NET Framework 1.1 Service Pack 1 has not been installed.  Please see 
the following website for more information about the service pack and how to 
install it: http://support.microsoft.com/?kbid=867460

I'm working with including files into my main wxs file and my most recent 
change was to create a wxi with my directory definitions and then use 
directoryref around my component wxi files.

Is there an issue with directoryref and include files that would throw this 
type of error?


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WiX with VS 2008

2008-01-22 Thread Don Tasanasanta (Volt)
I just tried rolling back to 3530 and that didn't work either. I suspect 
there's a setting somewhere that I need to clear out in order for new settings 
to be applied.

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of RAYMENT Tim
Sent: Tuesday, January 22, 2008 3:42 AM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] WiX with VS 2008

Which version of WiX have you got installed?  3.0.3711 has broken VS2008 
integration.  I have Wix 3.0.3530 working fine with VS2008 and Vista.
Have you installed any other addins to Visual Studio?  I had problems with CAB 
and GAX preventing creation of new projects.

Tim

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Don Tasanasanta 
(Volt)
Sent: 22 January 2008 00:05
To: Don Tasanasanta (Volt); wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] WiX with VS 2008

Is there anyone able to use WiX with VS 2008?

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Don Tasanasanta 
(Volt)
Sent: Friday, January 18, 2008 3:42 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] WiX with VS 2008

Somehow I corrupted my WiX3 interface with VS 2008

Whenever I try and create/open a WiX project I get this error:

'WixProject1.wixproj' cannot be opened because its project type (.wixproj) is 
not supported by this version of Visual Studio.
To open it, please use a version that supports this type of project.

I have tried repairing and uninstall/reinstall of WiX3 but I'm still messed up.

Is there any solution to this other than reinstalling VS 2008?



+++ Virus-scanned by MailControl for Oxford Instruments +++


___
This e-mail is confidential and is for the addressee only.   Please refer to
www.oxinst.com/email-statementhttp://www.oxinst.com/email-statement for 
regulatory information.
-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] what's an ExtensionData child element?

2008-01-22 Thread Don Tasanasanta (Volt)
I am getting the following error.

error CNDL0063 : A not hidden Feature element must have at least one child 
element of type ExtensionData.

Has anyone encountered this? And what is a child element of type ExtensionData? 
I can't find any reference to it in WiX help.
-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] what's an ExtensionData child element?

2008-01-22 Thread Don Tasanasanta (Volt)
Nevermind... I figured it out.

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Don Tasanasanta 
(Volt)
Sent: Tuesday, January 22, 2008 1:48 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] what's an ExtensionData child element?

I am getting the following error.

error CNDL0063 : A not hidden Feature element must have at least one child 
element of type ExtensionData.

Has anyone encountered this? And what is a child element of type ExtensionData? 
I can't find any reference to it in WiX help.
-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WiX with VS 2008

2008-01-21 Thread Don Tasanasanta (Volt)
Is there anyone able to use WiX with VS 2008?

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Don Tasanasanta 
(Volt)
Sent: Friday, January 18, 2008 3:42 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] WiX with VS 2008

Somehow I corrupted my WiX3 interface with VS 2008

Whenever I try and create/open a WiX project I get this error:

'WixProject1.wixproj' cannot be opened because its project type (.wixproj) is 
not supported by this version of Visual Studio.
To open it, please use a version that supports this type of project.

I have tried repairing and uninstall/reinstall of WiX3 but I'm still messed up.

Is there any solution to this other than reinstalling VS 2008?

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] WiX with VS 2008

2008-01-18 Thread Don Tasanasanta (Volt)
Somehow I corrupted my WiX3 interface with VS 2008

Whenever I try and create/open a WiX project I get this error:

'WixProject1.wixproj' cannot be opened because its project type (.wixproj) is 
not supported by this version of Visual Studio.
To open it, please use a version that supports this type of project.

I have tried repairing and uninstall/reinstall of WiX3 but I'm still messed up.

Is there any solution to this other than reinstalling VS 2008?

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] register file types and DLL

2008-01-11 Thread Don Tasanasanta (Volt)
Take a look at RegistryValue in the WiX help documentation.

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Lincoln Lavoie
Sent: Thursday, January 10, 2008 7:36 PM
To: WiX-users@lists.sourceforge.net
Subject: [WiX-users] register file types and DLL

Hello All,

I'm new to using wix.  I'm trying to develop a relatively simple installer, but 
it does need to register one dll file and the file type used by the 
application.  Where can I find the documentation for this part of WiX.

Cheers,
Lincoln
-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] reference counting

2008-01-10 Thread Don Tasanasanta (Volt)
Does reference counting rely on the file name? or is it the component GUID?

If I have a product that installs a file and a second product that installs the 
same file do I need the component GUIDS  for that file to be the same in order 
for reference counting to work? Or is it enough that the files are being 
installed to the same location with the same name?
-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] subscribe

2007-07-25 Thread Don Tasanasanta (Volt)

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Question about writing custom actions...

2007-06-28 Thread Don Tasanasanta
Check for the property called REMOVE.

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Rory Clark
Sent: Thursday, June 28, 2007 1:47 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Question about writing custom actions...

 

...how do I tell if I am uninstalling a product or installing it? We
have a library we've written to do some configuration changes, but now
we want to different things when a user installs and when a user
uninstalls. I poked through the MSI SDK, but nothing really jumped out
while skimming the CHM file.

 

Thanks!

Rory

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] msi to exe

2007-06-22 Thread Don Tasanasanta
We incorporated iexpress into our automated nightly build process. 

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Afshin
Sepehri
Sent: Friday, June 22, 2007 2:06 PM
To: John Vottero; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] msi to exe

 

I need this to be done as part of an automatic daily build process which
also creates the .msi file.  I am not sure if IExpress can be used for
this purpose. Any alternative?

 

Afshin

 

From: John Vottero [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 22, 2007 1:56 PM
To: Afshin Sepehri; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] msi to exe

 

Use IExpress.exe.  You probably already have it (it's part of IE).

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Afshin
Sepehri
Sent: Friday, June 22, 2007 4:53 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] msi to exe

 

Hi,

 

How can I convert an .msi file to .exe?

 

Afshin

 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] ConfigureSQL Leaked MSIHANDLE

2007-06-21 Thread Don Tasanasanta
We have been trying to attach a debugger to this issue but it doesn't
reliably duplicate but it does happen often enough to be a nuisance. 

 

Here's another question though... we are encountering this error on
installs that do not do anything with SQL. Why is InstallSqlData
throwing an error when there is no SQL data to be installed? 

 



From: Rob Mensching [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 08, 2007 7:54 AM
To: Don Tasanasanta; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] ConfigureSQL Leaked MSIHANDLE

 

Hmm, that would suggest that there is still some memory issue.  It is
likely that your SQL script is exactly the right shape and size to hit
this issue.  If you could attach a debugger to the install with pageheap
turned on, hopefully we can narrow down the exception.

 

From: Don Tasanasanta [mailto:[EMAIL PROTECTED] 
Sent: Monday, May 07, 2007 11:26 AM
To: Rob Mensching; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] ConfigureSQL Leaked MSIHANDLE

 

I've upgraded our build process to 2.0.5213.0, recompiled and ran again.
We're still having a problem. Here's an excerpt from the logs. Let me
know if you need the whole file.  

 

Action start 16:53:33: InstallCertificates.

MSI (s) (6C:94) [16:53:33:920]: Doing action: InstallSqlData

Action ended 16:53:33: InstallCertificates. Return value 1.

MSI (s) (6C:AC) [16:53:33:947]: Invoking remote custom action. DLL:
D:\WINDOWS\Installer\MSIF.tmp, Entrypoint: InstallSqlData

MSI (s) (6C:AC) [16:53:34:001]: Leaked MSIHANDLE (591) of type 790531
for thread 2488

MSI (s) (6C:AC) [16:53:34:001]: Leaked MSIHANDLE (590) of type 790531
for thread 2488

MSI (s) (6C:AC) [16:53:34:001]: Leaked MSIHANDLE (583) of type 790540
for thread 2488

MSI (s) (6C:AC) [16:53:34:001]: Leaked MSIHANDLE (582) of type 790540
for thread 2488

MSI (s) (6C:AC) [16:53:34:001]: Leaked MSIHANDLE (504) of type 790541
for thread 2488

MSI (s) (6C:AC) [16:53:34:001]: Note: 1: 2769 2: InstallSqlData 3: 5 

Action start 16:53:33: InstallSqlData.

Info 2769. Custom Action InstallSqlData did not close 5 MSIHANDLEs.

MSI (s) (6C:94) [16:53:34:001]: Machine policy value 'DisableRollback'
is 0

MSI (s) (6C:94) [16:53:34:001]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\R
ollback\Scripts 3: 2 

Action ended 16:53:34: InstallSqlData. Return value 3.

MSI (s) (6C:94) [16:53:34:014]: Note: 1: 1402 2:
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\R
ollback\Scripts 3: 2 

MSI (s) (6C:94) [16:53:34:014]: No System Restore sequence number for
this installation.

MSI (s) (6C:94) [16:53:34:014]: Unlocking Server

Action ended 16:53:34: INSTALL. Return value 3.

 



From: Rob Mensching [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 18, 2007 10:40 AM
To: Don Tasanasanta; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] ConfigureSQL Leaked MSIHANDLE

 

Hmm.  Can you quickly try the latest WiX v2 release:
http://wix.sourceforge.net/releases/2.0.5213.0/.  That should quickly
tell us if there is still a problem.

 

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Wednesday, April 18, 2007 10:24 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] ConfigureSQL Leaked MSIHANDLE

 

I've looked back and seen that there's some history to this problem.

 

I'm wondering if a solution has been found and implemented. I'm using
wix version 2.0.4820.0 and now encountering this problem 100% of the
time in the last 2 builds during silent installs only. 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Deleteing a registry entry at the end of the install

2007-06-20 Thread Don Tasanasanta
Could you delete it as part of the install instead of at the end up the
install? 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of carlH
Sent: Wednesday, June 20, 2007 7:33 AM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Deleteing a registry entry at the end of the
install


The registry entry was not created by the MSI installer.
C 
-- 
View this message in context:
http://www.nabble.com/Deleteing-a-registry-entry-at-the-end-of-the-insta
ll-tf3952329.html#a11214672
Sent from the wix-users mailing list archive at Nabble.com.



-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] different msi sizes on different build machines

2007-06-19 Thread Don Tasanasanta
Is there any WiX explanation as to why the same code compiled and
packaged on two identical build machines would produce 9 meg msi's that
are just 3k different in size? 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Password in the msi logs

2007-06-06 Thread Don Tasanasanta
In my install UI I ask for a password and store it in a property. If
someone runs the install with logging turned on that property is found
in several places in the log along with the unprotected password. Is
there any way to prevent this? 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Difference between 2.0 and 3.0?

2007-05-29 Thread Don Tasanasanta
Where can I find information on the difference between WiX 2.0 and WiX
3.0? 

 

I'm planning on upgrading to 3.0 and would like to know all the things
that I can take advantage of over 2.0. 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Publish Event is acting like Publish Property

2007-05-25 Thread Don Tasanasanta
I have the following 2 commands inside a next button control: 

 

Publish Event=Remove Value=LoggingFeaturePROPERTY1=1 OR
PROPERTY2=1/Publish

Publish Event=AddLocal Value=LoggingFeaturePROPERTY1=0
AND PROPERTY2=0/Publish

 

But instead of adding and removing the feature LoggingFeature I end up
with 2 properties REMOVE and ADDLOCAL

 

REMOVE ends up equaling LoggingFeature

ADDLOCAL ends up equaling a comma deliminated list of all my features. 

 

When I comment out these two lines everything seems to work fine (except
for the functionality I'm trying to achieve). 

 

Any ideas? 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Publish Event is acting like Publish Property

2007-05-25 Thread Don Tasanasanta
As an addition/follow-up question... LoggingFeature is a sub-feature
of a feature called Shared

 

Is there a certain syntax for declaring a sub-feature when using Publish
Event?

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Friday, May 25, 2007 1:23 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Publish Event is acting like Publish Property

 

I have the following 2 commands inside a next button control: 

 

Publish Event=Remove Value=LoggingFeaturePROPERTY1=1 OR
PROPERTY2=1/Publish

Publish Event=AddLocal Value=LoggingFeaturePROPERTY1=0
AND PROPERTY2=0/Publish

 

But instead of adding and removing the feature LoggingFeature I end up
with 2 properties REMOVE and ADDLOCAL

 

REMOVE ends up equaling LoggingFeature

ADDLOCAL ends up equaling a comma deliminated list of all my features. 

 

When I comment out these two lines everything seems to work fine (except
for the functionality I'm trying to achieve). 

 

Any ideas? 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Referencing a not yet installed file in a custom action

2007-05-23 Thread Don Tasanasanta
You have the right idea... use the binary tag to put the file in the
binary table and then reference that binary with your custom action
using the binarykey=id of binary file entry.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Steve S
Sent: Wednesday, May 23, 2007 12:18 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Referencing a not yet installed file in a custom
action


Hey all,

I've got an issue where I need to reference a file in my install that is
used in a custom action that I've got.  The install is a web install and
therefore I can't refer to the file as if it were on a CD or any media. 
Problem is that the custom action needs to happen *before* the
InstallFiles
action, so I can't refer to the installed location to find the file.

Does anybody know how I can accomplish this?  I've tried to mess around
with
the Binary tag and passing some reference in there through the
CustomActionData to no avail.

Appreciate the help :)

Steve
-- 
View this message in context:
http://www.nabble.com/Referencing-a-not-yet-installed-file-in-a-custom-a
ction-tf3805977.html#a10770918
Sent from the wix-users mailing list archive at Nabble.com.



-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] conditionally set permission

2007-05-22 Thread Don Tasanasanta
Is there a way to conditionally set permission on a folder depending on
a property value? 

 

If value then set permission else do not set permission.

 

I'd like to set a permission on a newly created folder if the user
exists, but if the user doesn't exist then of course I don't want to set
permissions for it. 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] VC8 runtime merge module and COM registration onVista, error 0x800736B1

2007-05-17 Thread Don Tasanasanta
I had to sit down and painstakingly enter all the reg entries for my
DLL's into my WiX code and get rid of all SelfReg. 

 

It was a big pain bug in the long run it also kept all the developers
honest. Now all interface changes are detected, made public knowledge
and the automated build still works. 

 

And yes, it is mandated by the build master that all released files be
placed in one main Release folder. 

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Scott
Palmer
Sent: Thursday, May 17, 2007 12:50 PM
To: Wilson, Phil
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] VC8 runtime merge module and COM registration
onVista, error 0x800736B1

 

So Vista breaks things in a stupid brain-dead way and there is no way to
fix it save rebuilding things to not use DLLs.. Is that basically it?

Re: SelfReg ...The short of it is that COM sucks big time and is
inherently broken beyond belief.  I will look into the huge mess
required to not use SelfReg... what a nightmare.  Say good by to being
able to add an interface to your DLL...and still work with an automated
build script.  Why must installers always suck? 

Heat produces some ugly output... with fixed directory paths instead
of relative paths and it thinks the parent folder name of where the DLL
is found (the source path) is somehow what I want for my target path.
I.e. the output needs a lot of post processing to actually work with a
reasonable WiX project.  (Or does everyone install their COM DLLs to a
folder called Release under their main product install dir?)

Not being able to roll back the registry changes done by SelfReg seems
like a VERY small price to pay to avoid this mess.

Scott

On 5/17/07, Wilson, Phil [EMAIL PROTECTED] wrote:

That's just the way Vista works with the Winsxs stuff.  A custom action
Dll can link staticly (statically? mmm...) to the CRT.  I didn't say
anything about the evils of SelfReg because it's been covered so often
here I assumed it would be fairly common knowledge.   The registration
information can be specified in the registry or class tables so that no
code needs to run at install time (Tallow, Heat etc). 

Phil Wilson 



From: Scott Palmer [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 17, 2007 11:58 AM
To: Wilson, Phil
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] VC8 runtime merge module and COM registration
on Vista, error 0x800736B1

Apparently... The questions remain: Why not? and... How do I fix it?

It now appears that a custom action I need to run fails for the same
reason.

Scott

On 5/17/07, Wilson, Phil [EMAIL PROTECTED] wrote: 

The sxs Vista install of those CRT manifests etc isn't complete at
SelfReg time.  

Phil Wilson 

 

 



From: [EMAIL PROTECTED] [mailto:
[EMAIL PROTECTED] On Behalf Of Scott Palmer
Sent: Thursday, May 17, 2007 11:42 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] VC8 runtime merge module and COM registration on
Vista,error 0x800736B1

I have a problem on Vista where my COM DLLs don't register (HRESULT =
0x800736B1) .. after Googling it seems this is caused by the C runtime
not being installed.  (All other DLLs that are compiled with VC6 or
supplied by others register fine.) 

My installer also works fine on Windows XP.

I install the VC8 runtime stuff with the merge modules.

Directory Id=TARGETDIR Name=SourceDir

  Merge Id=VC8Runtime SourceFile=C:\Program Files\Common
Files\Merge Modules\Microsoft_VC80_CRT_x86.msm Language=1033
DiskId=1/ 
  Merge Id=VC8Policy SourceFile=C:\Program Files\Common
Files\Merge Modules\policy_8_0_Microsoft_VC80_CRT_x86.msm
Language=1033 DiskId=1/
  Merge Id=MFCRuntime SourceFile=C:\Program Files\Common
Files\Merge Modules\Microsoft_VC80_MFC_x86.msm Language=1033
DiskId=1/ 
  Merge Id=MFCPolicy SourceFile=C:\Program Files\Common
Files\Merge Modules\policy_8_0_Microsoft_VC80_MFC_x86.msm
Language=1033 DiskId=1/

...

And use SelfRegCost=1000 to get the COM DLLs to register. 

What's the trick to getting this to work on Vista?

Thanks,

Scott







-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now. 
http://sourceforge.net/powerbar/db2/
___
WiX-users mailing list 
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net

Re: [WiX-users] Immediate Custom Action - Reading Config File

2007-05-15 Thread Don Tasanasanta
You could store the config file in the binary table as a dependency for
the MSI to run. 

 

Take a look at the Binary Element

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Tuesday, May 15, 2007 12:06 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Immediate Custom Action - Reading Config File

 

Is there a way to access an xml file (packaged within the msi) from a
custom action that is executed immediately. 

 

I am trying to see if it is possible to update Properties from values
within a config file. Therefore a deferred custom action is not
appropriate as I will not have full access to the properties, but I want
to package the config file within the installer package and therefore a
packaged file will not be available on disk at the point that an
immediate custom action is executed. 

 

In a nutshell I understand that any files will not be on the file system
when an immediate custom action is executed, but is there a way of
storing (and accessing) the file some other way?

 

Any feedback on this would be most appreciated

 

.

--
 
HBOS plc, Registered in Scotland No. SC218813. Registered Office: The
Mound, Edinburgh EH1 1YZ. HBOS plc is a holding company, subsidiaries of
which are authorised and regulated by the Financial Services Authority.

==
-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] size in Add/Remove keeps increasing with every upgrade

2007-05-01 Thread Don Tasanasanta
The program size displayed in Add/Remove programs increases by adding
the new size to the existing size instead of displaying the new size of
the upgrade.

 

Example:

 

Original size ARP displays 1 meg

Upgrade 1 (1 meg in size) ARP displays 2 megs

Upgrade 2 (1 meg in size) ARP displays 3 megs

Etc...

 

What is going on here? 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] size in Add/Remove keeps increasing with every upgrade

2007-05-01 Thread Don Tasanasanta
After reading the article I'd like to know...

 

Is there a way to set an estimated size for the whole program and not
have to set a size for each component? 

 



From: Simon Dahlbacka [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 01, 2007 11:56 AM
To: Don Tasanasanta
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] size in Add/Remove keeps increasing with every
upgrade

 

as the size might be a guesstimate, (see
http://blogs.msdn.com/oldnewthing/archive/2004/07/09/178342.aspx) I'm
not too surprised, although it sounds somewhat strange 

On 5/1/07, Don Tasanasanta [EMAIL PROTECTED] wrote:

The program size displayed in Add/Remove programs increases by adding
the new size to the existing size instead of displaying the new size of
the upgrade.

 

Example:

 

Original size ARP displays 1 meg

Upgrade 1 (1 meg in size) ARP displays 2 megs

Upgrade 2 (1 meg in size) ARP displays 3 megs

Etc...

 

What is going on here? 



-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now. 
http://sourceforge.net/powerbar/db2/
___
WiX-users mailing list 
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] size in Add/Remove keeps increasing with everyupgrade

2007-05-01 Thread Don Tasanasanta
ARPSIZE doesn't seem to do anything to the size shown in Add/Remove
programs. 

 



From: Brett Kapilik [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 01, 2007 2:34 PM
To: Don Tasanasanta; Simon Dahlbacka
Cc: wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] size in Add/Remove keeps increasing with
everyupgrade

 

Although I have not tested this, what about setting the ARPSIZE property
directly?

 

http://msdn2.microsoft.com/en-us/library/aa367748.aspx

 

- Brett

 





From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Tuesday, May 01, 2007 4:26 PM
To: Simon Dahlbacka
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] size in Add/Remove keeps increasing
with everyupgrade

After reading the article I'd like to know...

 

Is there a way to set an estimated size for the whole program
and not have to set a size for each component? 

 





From: Simon Dahlbacka [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 01, 2007 11:56 AM
To: Don Tasanasanta
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] size in Add/Remove keeps increasing
with every upgrade

 

as the size might be a guesstimate, (see
http://blogs.msdn.com/oldnewthing/archive/2004/07/09/178342.aspx) I'm
not too surprised, although it sounds somewhat strange 

On 5/1/07, Don Tasanasanta [EMAIL PROTECTED] wrote:

The program size displayed in Add/Remove programs increases by
adding the new size to the existing size instead of displaying the new
size of the upgrade.

 

Example:

 

Original size ARP displays 1 meg

Upgrade 1 (1 meg in size) ARP displays 2 megs

Upgrade 2 (1 meg in size) ARP displays 3 megs

Etc...

 

What is going on here? 




-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and
take
control of your XML. No limits. Just data. Click to get it now. 
http://sourceforge.net/powerbar/db2/
___
WiX-users mailing list 
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] One-or-More Installation Design?

2007-04-24 Thread Don Tasanasanta
Couldn't you set up several features with the components you need and
turn them on and off depending on the decisions the user makes through
the UI. 

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Scott
Parker
Sent: Tuesday, April 24, 2007 8:25 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] One-or-More Installation Design?

 

I've used WiX to create a few rather simple Do X then Y then possibly
Z sorts of installations before, but now I'm working on one of much
greater scope that I'm having trouble clearly seeing how to tackle. 

The problem is thus: I need to allow the user to create 1 OR MORE
virtual directories (and their physical counterparts) when they install.
They will all have identical files but for web.config. An example:

I set up my first VirDir to be called MyTestWeb and it is stored at
C:\MyTestWeb . This will install default.aspx and web.config to
c:\MyTestWeb
As part of the same installation, I then also decide that I need a
second VirDir called ProductionWeb and it is stored at c:\Production.
This would also install default.aspx and web.config to c:\Production

I can certainly imagine how the dialogs etc for this should look and
behave, but what would be the high-level design / logic to actually get
what would essentially be the same Component installed to multiple
locations? Anyone have thoughts on this? 

Thanks,
-Scott 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Handing a change in IUSR account

2007-04-24 Thread Don Tasanasanta
Are most people simply assuming IUSR_machine name and calling it good?


 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Friday, April 20, 2007 4:45 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Handing a change in IUSR account

 

Most of the time when setting up web applications or virtual directories
you can assume that the IUSR account will be IUSR_machine name and go
forth from there.

 

But what if the user has changed the IUSR account or more likely changed
the name of the machine since installing IIS. Then the name of the
machine doesn't match the assumed IUSR_machine name name. 

 

How are people handling this situation? Also... is there a way I can
trap this error in WiX so I can at least inform the user why the install
failed? 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Handing a change in IUSR account

2007-04-20 Thread Don Tasanasanta
Most of the time when setting up web applications or virtual directories
you can assume that the IUSR account will be IUSR_machine name and go
forth from there.

 

But what if the user has changed the IUSR account or more likely changed
the name of the machine since installing IIS. Then the name of the
machine doesn't match the assumed IUSR_machine name name. 

 

How are people handling this situation? Also... is there a way I can
trap this error in WiX so I can at least inform the user why the install
failed? 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] ConfigureSQL Leaked MSIHANDLE

2007-04-18 Thread Don Tasanasanta
I've looked back and seen that there's some history to this problem.

 

I'm wondering if a solution has been found and implemented. I'm using
wix version 2.0.4820.0 and now encountering this problem 100% of the
time in the last 2 builds during silent installs only. 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Controling SQL services

2007-04-12 Thread Don Tasanasanta
What is the best way to sequence ServiceControl so that it will shut
down SQL before the SQL scripts are run?

 



From: Rob Mensching [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 11, 2007 5:30 PM
To: Don Tasanasanta; [EMAIL PROTECTED]
Subject: RE: Controling SQL services

 

ServiceControl element.

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Wednesday, April 11, 2007 3:37 PM
To: [EMAIL PROTECTED]
Subject: [WiX-users] Controling SQL services

 

Is there an easy way to start and stop SQL services from wix? I'd like
to stop the services before running my SQL scripts and then start them
back up after everything is said and done. 

-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Controling SQL services

2007-04-12 Thread Don Tasanasanta
Actually I simply need to restart the sql services before running the
sql scripts. I figure if I can stop them then I should be able to start
them again. 

 



From: John Vottero [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 12, 2007 9:53 AM
To: Don Tasanasanta; Rob Mensching; [EMAIL PROTECTED]
Subject: RE: [WiX-users] Controling SQL services

 

How are your SQL scripts supposed to work if SQL is down?

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Thursday, April 12, 2007 12:47 PM
To: Rob Mensching; [EMAIL PROTECTED]
Subject: Re: [WiX-users] Controling SQL services

 

What is the best way to sequence ServiceControl so that it will shut
down SQL before the SQL scripts are run?

 



From: Rob Mensching [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 11, 2007 5:30 PM
To: Don Tasanasanta; [EMAIL PROTECTED]
Subject: RE: Controling SQL services

 

ServiceControl element.

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Wednesday, April 11, 2007 3:37 PM
To: [EMAIL PROTECTED]
Subject: [WiX-users] Controling SQL services

 

Is there an easy way to start and stop SQL services from wix? I'd like
to stop the services before running my SQL scripts and then start them
back up after everything is said and done. 

-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Controling SQL services

2007-04-12 Thread Don Tasanasanta
I'm using 2.0.4820.0.

 

I won't be moving up to 3.x until after the current release is
completed. 

 



From: Rob Mensching [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 12, 2007 11:41 AM
To: Don Tasanasanta; [EMAIL PROTECTED]
Subject: RE: Controling SQL services

 

Which version of the WiX toolset are you using?  

 

From: Don Tasanasanta [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 12, 2007 9:47 AM
To: Rob Mensching; [EMAIL PROTECTED]
Subject: RE: Controling SQL services

 

What is the best way to sequence ServiceControl so that it will shut
down SQL before the SQL scripts are run?

 



From: Rob Mensching [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 11, 2007 5:30 PM
To: Don Tasanasanta; [EMAIL PROTECTED]
Subject: RE: Controling SQL services

 

ServiceControl element.

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Wednesday, April 11, 2007 3:37 PM
To: [EMAIL PROTECTED]
Subject: [WiX-users] Controling SQL services

 

Is there an easy way to start and stop SQL services from wix? I'd like
to stop the services before running my SQL scripts and then start them
back up after everything is said and done. 

-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Installing .NET Services

2007-04-05 Thread Don Tasanasanta
How does ServiceInstall detect that you're installing a .net service as
opposed to a regular service?

 

I'm experiencing difficulties installing a .net service using
ServiceInstall. The service is there but doesn't seem to be registering
properly.

 

How does ServiceInstall work compared to the .net utility
InstallUtil.exe?

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Rob
Mensching
Sent: Wednesday, October 25, 2006 8:12 AM
To: BULL, Dave, GBM; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Installing .NET Services

 

ServiceInstall should just work.

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of BULL,
Dave, GBM
Sent: Wednesday, October 25, 2006 5:52 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Installing .NET Services

 

Hi Wix people

 

I am having problems installing a windows service written in .NET. I am
using wix 3.0.2128.0.

 

I have successfully managed to install services written in unmanaged C++
using the ServiceInstall tag, but this doesn't seem to work for my .NET
component.

 

Do I have to use the method which is mentioned here:

 

http://installneo.blogspot.com/2004/09/installing-windows-services-creat
ed.html

 

? ... or should the ServiceInstall tag work?

 

Dave

 
 

***
 
The Royal Bank of Scotland plc. Registered in Scotland No 90312.
Registered Office: 36 St Andrew Square, Edinburgh EH2 2YB. 
 
Authorised and regulated by the Financial Services Authority 
 
 
 
This e-mail message is confidential and for use by the 
 
addressee only. If the message is received by anyone other 
 
than the addressee, please return the message to the sender 
 
by replying to it and then delete the message from your 
 
computer. Internet e-mails are not necessarily secure. The 
 
Royal Bank of Scotland plc does not accept responsibility for 
 
changes made to this message after it was sent. 
 
 
 
Whilst all reasonable care has been taken to avoid the 
 
transmission of viruses, it is the responsibility of the recipient to 
 
ensure that the onward transmission, opening or use of this 
 
message and any attachments will not adversely affect its 
 
systems or data. No responsibility is accepted by The 
 
Royal Bank of Scotland plc in this regard and the recipient should carry

 
out such virus and other checks as it considers appropriate. 
 
Visit our websites at: 
 
http://www.rbos.com
 
http://www.rbsmarkets.com 
 

***
 
-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] detecting versions of SQL server

2007-03-23 Thread Don Tasanasanta
Is there an easy way to detect what version of SQL server in installed
on a machine? 

-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Intercepting SQL errors and displaying custom error

2007-03-19 Thread Don Tasanasanta
I can't seem to find this in my version of WiX 2.0.4820.0

 



From: Rob Mensching [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 16, 2007 2:57 PM
To: Don Tasanasanta; wix-users@lists.sourceforge.net
Subject: RE: Re: [WiX-users] Intercepting SQL errors and displaying
custom error

 

Take a look at wix\src\ext\SqlExtension\wixlib\en-us.wxl.  You'll see
everything there is overridable.

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Friday, March 16, 2007 2:13 PM
To: Don Tasanasanta; Rob Mensching; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Intercepting SQL errors and displaying custom
error

 

I'm searching the wixlib's for the sql error strings and only found them
in the sca.wixlib

 

None of the tuple's defined in the sql section has localization
variables and I haven't found associating fields in the wixui.wixlib

 

Does that mean that the sql errors have not been localized? In which
case, does that mean that a wxl file won't do the trick in intercepting
sql errors and substituting my own custom errors? 

 



From: Don Tasanasanta 
Sent: Friday, March 16, 2007 1:06 PM
To: Don Tasanasanta; Rob Mensching; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Intercepting SQL errors and displaying custom
error

 

Ok maybe I don't understand .wxl files that well... 

 

I found the identifier in the error table, created a .wxl file and used
light with a -loc to my wxl file and a reference to my rsp file. 

 

When all was said and done I checked the error table but the error
identifier I tried to replace wasn't changed. 

 

Here is my wxl file:

 

?xml version='1.0'? 

WixLocalization
xmlns='http://schemas.microsoft.com/wix/2003/01/localization'
Codepage='1252'

   String Id='LANG'1033/String

   String Id='26201'la la la la la/String

/WixLocalization

 

I'm trying to replace the string 26201 in the error table.

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Thursday, March 15, 2007 5:35 PM
To: Rob Mensching; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Intercepting SQL errors and displaying custom
error

 

I think I understand the use of .wxl files and I've found the sql errors
within the sca.wixlib.

 

How do I identify the sql errors within my personal .wxl? Do I simply
copy from section type=fragment to /section of the sql errors into
my own .wxl, substitute my own error msgs, and then link it?

 

Is it that easy?

 



From: Rob Mensching [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 14, 2007 4:46 PM
To: Don Tasanasanta; wix-users@lists.sourceforge.net
Subject: RE: Intercepting SQL errors and displaying custom error

 

Yes.  Provide a .wxl file for the localization identifiers defined the
.wixlib.

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Wednesday, March 14, 2007 3:34 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Intercepting SQL errors and displaying custom error

 

Is there a way to intercept SQL install errors and display my own custom
error(s)? 

 

-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Intercepting SQL errors and displaying custom error

2007-03-16 Thread Don Tasanasanta
Ok maybe I don't understand .wxl files that well... 

 

I found the identifier in the error table, created a .wxl file and used
light with a -loc to my wxl file and a reference to my rsp file. 

 

When all was said and done I checked the error table but the error
identifier I tried to replace wasn't changed. 

 

Here is my wxl file:

 

?xml version='1.0'? 

WixLocalization
xmlns='http://schemas.microsoft.com/wix/2003/01/localization'
Codepage='1252'

   String Id='LANG'1033/String

   String Id='26201'la la la la la/String

/WixLocalization

 

I'm trying to replace the string 26201 in the error table.

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Thursday, March 15, 2007 5:35 PM
To: Rob Mensching; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Intercepting SQL errors and displaying custom
error

 

I think I understand the use of .wxl files and I've found the sql errors
within the sca.wixlib.

 

How do I identify the sql errors within my personal .wxl? Do I simply
copy from section type=fragment to /section of the sql errors into
my own .wxl, substitute my own error msgs, and then link it?

 

Is it that easy?

 



From: Rob Mensching [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 14, 2007 4:46 PM
To: Don Tasanasanta; wix-users@lists.sourceforge.net
Subject: RE: Intercepting SQL errors and displaying custom error

 

Yes.  Provide a .wxl file for the localization identifiers defined the
.wixlib.

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Wednesday, March 14, 2007 3:34 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Intercepting SQL errors and displaying custom error

 

Is there a way to intercept SQL install errors and display my own custom
error(s)? 

 

-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Intercepting SQL errors and displaying custom error

2007-03-16 Thread Don Tasanasanta
I'm searching the wixlib's for the sql error strings and only found them
in the sca.wixlib

 

None of the tuple's defined in the sql section has localization
variables and I haven't found associating fields in the wixui.wixlib

 

Does that mean that the sql errors have not been localized? In which
case, does that mean that a wxl file won't do the trick in intercepting
sql errors and substituting my own custom errors? 

 



From: Don Tasanasanta 
Sent: Friday, March 16, 2007 1:06 PM
To: Don Tasanasanta; Rob Mensching; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Intercepting SQL errors and displaying custom
error

 

Ok maybe I don't understand .wxl files that well... 

 

I found the identifier in the error table, created a .wxl file and used
light with a -loc to my wxl file and a reference to my rsp file. 

 

When all was said and done I checked the error table but the error
identifier I tried to replace wasn't changed. 

 

Here is my wxl file:

 

?xml version='1.0'? 

WixLocalization
xmlns='http://schemas.microsoft.com/wix/2003/01/localization'
Codepage='1252'

   String Id='LANG'1033/String

   String Id='26201'la la la la la/String

/WixLocalization

 

I'm trying to replace the string 26201 in the error table.

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Thursday, March 15, 2007 5:35 PM
To: Rob Mensching; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Intercepting SQL errors and displaying custom
error

 

I think I understand the use of .wxl files and I've found the sql errors
within the sca.wixlib.

 

How do I identify the sql errors within my personal .wxl? Do I simply
copy from section type=fragment to /section of the sql errors into
my own .wxl, substitute my own error msgs, and then link it?

 

Is it that easy?

 



From: Rob Mensching [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 14, 2007 4:46 PM
To: Don Tasanasanta; wix-users@lists.sourceforge.net
Subject: RE: Intercepting SQL errors and displaying custom error

 

Yes.  Provide a .wxl file for the localization identifiers defined the
.wixlib.

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Wednesday, March 14, 2007 3:34 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Intercepting SQL errors and displaying custom error

 

Is there a way to intercept SQL install errors and display my own custom
error(s)? 

 

-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] custom action to reg NET 2.0

2007-03-15 Thread Don Tasanasanta
Your solution helped me find what was wrong with mine. For some reason
the CA didn't like what I was putting in for the Directory value. I put
in INSTALLDIR and everything worked great.

 

Thanks!

 



From: Dhaval Patel [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 09, 2007 4:59 PM
To: Don Tasanasanta
Subject: Re: [WiX-users] custom action to reg NET 2.0

 

Here is one of my CustomAction elements that I have used in different
projects - I don't see anything in your CA that will not allow it to
work, but maybe you want to change the ExeCommand attribute to something
like I have and give it a shot: 

InstallExecuteSequence

Custom Action='Installation' After='InstallFinalize'NOT
Installed/Custom 

/InstallExecuteSequence

CustomAction Id='Installation' Directory='INSTALLDIR' Win64='no'

ExeCommand='[WindowsFolder]Microsoft.NET\Framework\v2.0.50727\regasm.ex
e /codebase [ProgramFilesFolder]MyComapny\MyProduct\MyProduct.dll' 

  Return='check' /

This seems to work just fine (i.e. it successfully registers the .dll
for COM Interop in the registry). I think I had the same issue that you
are having, but I figured out the solution through trial and error, and
then I forgot all about it :) 

The problem I think is that you may think WIX will execute the CA from
within the Directory ([FRAMEWORKBASEPATH]v2.0.50727 in your case)
attribute, but that probably is not the case. Notice in my case how I
explicitly pass all the paths to the ExeCommand attribute directly - I
don't even worry about the Directory attribute (I assume you can set
it to any valid DirectoryId within your current WIX project, if you
decide to use the technique I am using). This is probably the reason why
it is working in my case, and not yours. 

Let us all know if this fixes your issue :)




On 3/8/07, Don Tasanasanta [EMAIL PROTECTED]  wrote:

I have been banging my head against this all day... I'm trying to get
aspnet_regiis.exe to run and set the ASPNET version to 2.0 for my
virtual directory. 

 

Here is my custom action...

CustomAction Id=SetAspNet Return=asyncWait
Directory=[FRAMEWORKBASEPATH]v2.0.50727 Execute=commit
ExeCommand=aspnet_regiis.exe -s W3SVC/1/ROOT/MYWebsite -norestart /

 

Where FRAMEWORKBASEPATH is the path to Framework under Microsoft.NET in
the WINDOWS folder. 

 

I have also tried

 

CustomAction Id=VIA3AdminAspNet Return=asyncWait
Property=[ASPNETREGPATH] Execute=commit ExeCommand=-s
W3SVC/1/ROOT/MyWebsite -norestart /

 

Where ASPNETREGPATH is the entire path plus aspnet_regiis.exe 

 

I have also tried changing the Execute to immediate and sequencing the
custom action after installfinalize.

 

Every time I run I get a 1631 return from my custom actions. 

 

The command line works just fine when run from a cmd prompt. What am I
missing here?



-
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.phpp=sourceforgeCID=DEVDE
V
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users 

 

-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Intercepting SQL errors and displaying custom error

2007-03-15 Thread Don Tasanasanta
I think I understand the use of .wxl files and I've found the sql errors
within the sca.wixlib.

 

How do I identify the sql errors within my personal .wxl? Do I simply
copy from section type=fragment to /section of the sql errors into
my own .wxl, substitute my own error msgs, and then link it?

 

Is it that easy?

 



From: Rob Mensching [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 14, 2007 4:46 PM
To: Don Tasanasanta; wix-users@lists.sourceforge.net
Subject: RE: Intercepting SQL errors and displaying custom error

 

Yes.  Provide a .wxl file for the localization identifiers defined the
.wixlib.

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Wednesday, March 14, 2007 3:34 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Intercepting SQL errors and displaying custom error

 

Is there a way to intercept SQL install errors and display my own custom
error(s)? 

 

-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Intercepting SQL errors and displaying custom error

2007-03-14 Thread Don Tasanasanta
Is there a way to intercept SQL install errors and display my own custom
error(s)? 

 

-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] custom action to reg NET 2.0

2007-03-08 Thread Don Tasanasanta
I have been banging my head against this all day... I'm trying to get
aspnet_regiis.exe to run and set the ASPNET version to 2.0 for my
virtual directory. 

 

Here is my custom action...

CustomAction Id=SetAspNet Return=asyncWait
Directory=[FRAMEWORKBASEPATH]v2.0.50727 Execute=commit
ExeCommand=aspnet_regiis.exe -s W3SVC/1/ROOT/MYWebsite -norestart /

 

Where FRAMEWORKBASEPATH is the path to Framework under Microsoft.NET in
the WINDOWS folder. 

 

I have also tried

 

CustomAction Id=VIA3AdminAspNet Return=asyncWait
Property=[ASPNETREGPATH] Execute=commit ExeCommand=-s
W3SVC/1/ROOT/MyWebsite -norestart /

 

Where ASPNETREGPATH is the entire path plus aspnet_regiis.exe 

 

I have also tried changing the Execute to immediate and sequencing the
custom action after installfinalize.

 

Every time I run I get a 1631 return from my custom actions. 

 

The command line works just fine when run from a cmd prompt. What am I
missing here?

-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Tips for deploying a Web app as an MSI

2007-03-07 Thread Don Tasanasanta
I did the same thing. I created a vb script that traverses a directory
tree creating all the wix modules so whatever is the dev's put into the
website it will be automatically packaged at build time. 

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matthew
Janulewicz
Sent: Wednesday, March 07, 2007 10:14 AM
To: Kerry, Matt; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Tips for deploying a Web app as an MSI

 

At installer compile time, each file has to be named explicitly.

 

I've written a Wix build script (and use some custom commands in Visual
Studio, but that really doesn't matter) that uses a utility called
Mallow to build the source tree that gets included in our installers.
For what it's worth, I separate the INSTALLDIR tree into a different
file then link the two together. The file list in our installers changes
constantly, and the rest of the UI etc. doesn't so I keep them separate.
If you're interested in looking at my script let me know and I can send
it to the list.

 

 

-Matt

 

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Kerry,
Matt
Sent: Wednesday, March 07, 2007 7:54 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Tips for deploying a Web app as an MSI

 

I am looking to create an MSI in order to deploy a Web app to our
production servers. We already have a build process in place using
VisualBuild, that we would like to keep and I have got all the virtual
directory, app pool etc. creation and properties working beautifully -
which I thought would be the hard bit!

How I'm just looking for some tips as to how to wrap up all the files.
As it is a Web app there are loads of aspx, js, html etc files plus a
few dlls. Is there a clever way to include all the files for an app in
the wsx file, without hardcoding them.

Any tips greatly received. 

Matt 

 

 

 

Visit our website at http://www.halcrow.com http://www.halcrow.com/ 


The contents of this email are confidential, for the sole use 
of the intended recipient at the email address to which it has
been addressed and do not give rise to any binding legal 
obligation upon Halcrow companies unless subsequently confirmed 
on headed business notepaper sent by fax, letter or as an email 
attachment. Whilst reasonable care has been taken to avoid virus 
transmission, no responsibility for viruses is taken and it is 
your responsibility to carry out such checks as you feel
appropriate. Emails supplied are as found and there's no 
guarantee that the messages contained within the body of the 
email have not been edited after receipt. If you receive this 
email in error, please contact the sender immediately and delete 
the message from your system.
Thank you.

Halcrow Group Limited. Registered office: Vineyard House, 44 Brook Green
London, W6 7BY. Registered in England and Wales, Number 3415971.

-

-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Feature size problem

2007-03-02 Thread Don Tasanasanta
My feature select tree displays the size that each feature requires on
the hard drive. One problem I'm having is if the user unselects all the
features then all of the sizes change to either 0k, 1k, 512k, or 256k
instead of their actual size. 

 

Has anyone encountered this problem? 

-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Delete a virtual directory

2007-02-14 Thread Don Tasanasanta
My install creates virtual directories under Default Web Site - All
Unassigned IP. 

 

The IP, however, is guaranteed to change to a static IP address which
botches the uninstall of the virtual directory. So I would simply like
to delete it regardless. 

 



From: Rob Mensching [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 14, 2007 7:02 AM
To: Don Tasanasanta; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Delete a virtual directory

 

Not today.  Kinda' weird scenario, what are you doing?

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Tuesday, February 13, 2007 2:51 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Delete a virtual directory

 

Is there a command to delete a virtual directory if it exists?

-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Delete a virtual directory

2007-02-13 Thread Don Tasanasanta
Is there a command to delete a virtual directory if it exists?

-
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=lnkkid=120709bid=263057dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] per-user vs per-machine

2007-02-12 Thread Don Tasanasanta
Can a per-user install be told to upgrade over a per-machine install if
the user is the same administrator for both? 

 

Is there any way to tell a per-user install to do a major upgrade over a
per-machine install? Ie: uninstall the per-machine install and change it
to a per-user. 

-
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=lnkkid=120709bid=263057dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] per-user vs per-machine

2007-02-12 Thread Don Tasanasanta
A little more detail...

 

In the previous version of my install ALLUSERS was set to 2 to allow the
computer to install as per-machine if the user was an admin and per-user
if the user was not. 

 

Now the product has changed to install strictly as per-user. When
FindRelatedProducts is run it detects the previous version but also sees
that the previous version was installed as per-machine so it does not
set my upgrade property. 

 

So in the end the major upgrade does not occur and I have both copies
(previous version and new version) installed. 

 

Any suggestions on how to get a per-user install to do a major upgrade
over a per-machine install? 

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Monday, February 12, 2007 2:54 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] per-user vs per-machine

 

Can a per-user install be told to upgrade over a per-machine install if
the user is the same administrator for both? 

 

Is there any way to tell a per-user install to do a major upgrade over a
per-machine install? Ie: uninstall the per-machine install and change it
to a per-user. 

-
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=lnkkid=120709bid=263057dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] How can i make msiexec return a custom return code?

2007-02-06 Thread Don Tasanasanta
Is there any way to make msiexec return a custom defined return code
that I specify? My msi is being launched from another program and I
would like to return some custom information than what is already
returned. 

-
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=lnkkid=120709bid=263057dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Modifying permissions instead of setting them

2007-02-02 Thread Don Tasanasanta
Is modifying permissions on an already existing folder going to have to
be done through a custom action? 

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Wednesday, January 17, 2007 7:21 AM
To: Will Qian; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Modifying permissions instead of setting them

 

I second this request... is there a way of setting (modifying or adding
to) permissions of an already existing folder (not created by the
install) instead of resetting all the permissions on that folder? 

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Will Qian
Sent: Friday, January 12, 2007 3:16 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Modifying permissions instead of setting them

 

Hi, I was hoping someone could help me with a Wix issue.  Please
redirect if this is the wrong alias

 

Is there some way that I can modify the permissions of a folder instead
of just setting them?  For example, I've got an existing folder with:

 

Admin:  Full Control

Power Users: Read

Network Service: Read

 

I've want to set permissions so that:

 

Admin:  Full Control

Network Service:  Full Control

 

So, the resulting dir should end up:

 

Admin:  Full Control

Power Users:  Read

Network Service:  Full Control

 

When I put permission elements under CreateFolder, they seem to
trump all the existing permissions instead of adding to them.

 

Thanks!

 

Will

 

 

-
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=lnkkid=120709bid=263057dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Per-user install

2007-01-26 Thread Don Tasanasanta
I went through the same exercise a while back. What I ended up doing was
writing a whole new install from scratch and made sure each component
worked as per-user before adding another. 

I received a similar result as you did when I simply tried to change
over the install directory to PersonalFolder. 

Take a look at ClickThrough it helped me.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jason Van
Eaton
Sent: Friday, January 26, 2007 12:22 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Per-user install

Anyone?

JVE

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jason Van
Eaton
Sent: Thursday, January 25, 2007 1:36 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Per-user install

Hello folks,

I had a functional install working.  Everything was being installed to
Program Files.  I guess that is what we would call a 'per-machine'
install.  Someone suggested to me that I should make it a 'per-user'
install.  Naively, I thought I could just change the folder from
ProgramFilesFolder to PersonalFolder.  Unfortunately, that yielded a
boatload of errors and warnings...

error LGHT0204 : ICE38: Component Component_1 installs to user profile.
It must use a registry key under HKCU as its KeyPath, not a file.
error LGHT0204 : ICE64: The directory Directory_1 is in the user profile
but is not listed in the RemoveFile table.
warning LGHT1076 : ICE91: The file 'File_1' will be installed to the per
user directory 'Directory_1' that doesn't vary based on ALLUSERS value.
This file won't be copied to each user's profile even if a per machine
installation is desired.

I am looking for any help on the simplest way to achieve my goal.  I
don't really care if each user automatically gets a copy or if they each
have to do their own install.

On a related note, is there a way to use 1 reg key as the KeyPath for
each of the components or do they each require a separate reg key?

JVE


-
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.phpp=sourceforgeCID=DEVDE
V
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

-
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.phpp=sourceforgeCID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Does Votive use debug versions of wix?

2007-01-23 Thread Don Tasanasanta
I am getting this statement in my log file as a result of a custom
action call to my custom action function called RegisterDrivers for
registering system drivers. 

 

RegisterDrivers:  Debug Assert Message: Assertion failed in c:\documents
and settings\robmen\local
settings\temp\wp001\src\ca\wcautil\wcautil.cpp, 64 CustomAction
RegisterDrivers called WcaInitialize() but not WcaTerminate()

 

 



From: Bob Arnson [mailto:[EMAIL PROTECTED] 
Sent: Monday, January 22, 2007 8:15 PM
To: Don Tasanasanta
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Does Votive use debug versions of wix?

 

Don Tasanasanta wrote: 

Question 1: Does Votive install with the debug versions of the Wix
binaries?


No. Are you seeing evidence that it does?




-- 
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Does Votive use debug versions of wix?

2007-01-23 Thread Don Tasanasanta
I'm currently using 2.0.4611.0

 

I'm planning to upgrade but not until the next release cycle. 

 



From: Bob Arnson [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 23, 2007 10:39 AM
To: Don Tasanasanta; Bob Arnson
Cc: wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Does Votive use debug versions of wix?

 

Which version of Votive/WiX are you using? There was a release that
contained debug CA DLLs but that was fixed ages ago.

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Tuesday, 23 January, 2007 10:28
To: Bob Arnson
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Does Votive use debug versions of wix?

 

I am getting this statement in my log file as a result of a custom
action call to my custom action function called RegisterDrivers for
registering system drivers. 

 

RegisterDrivers:  Debug Assert Message: Assertion failed in c:\documents
and settings\robmen\local
settings\temp\wp001\src\ca\wcautil\wcautil.cpp, 64 CustomAction
RegisterDrivers called WcaInitialize() but not WcaTerminate()

 

 



From: Bob Arnson [mailto:[EMAIL PROTECTED] 
Sent: Monday, January 22, 2007 8:15 PM
To: Don Tasanasanta
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Does Votive use debug versions of wix?

 

Don Tasanasanta wrote: 

Question 1: Does Votive install with the debug versions of the Wix
binaries?


No. Are you seeing evidence that it does?

-- 
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Does Votive use debug versions of wix?

2007-01-22 Thread Don Tasanasanta
Question 1: Does Votive install with the debug versions of the Wix
binaries? 

 

If yes to question 1 then, question 2: Is there a version of the votive
install that installs a release variant? 

 

If no to question 2 then, question 3: What would be the best way to
compile using a release variant of the wix binaries? 

-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Modifying permissions instead of setting them

2007-01-17 Thread Don Tasanasanta
I second this request... is there a way of setting (modifying or adding
to) permissions of an already existing folder (not created by the
install) instead of resetting all the permissions on that folder? 

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Will Qian
Sent: Friday, January 12, 2007 3:16 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Modifying permissions instead of setting them

 

Hi, I was hoping someone could help me with a Wix issue.  Please
redirect if this is the wrong alias

 

Is there some way that I can modify the permissions of a folder instead
of just setting them?  For example, I've got an existing folder with:

 

Admin:  Full Control

Power Users: Read

Network Service: Read

 

I've want to set permissions so that:

 

Admin:  Full Control

Network Service:  Full Control

 

So, the resulting dir should end up:

 

Admin:  Full Control

Power Users:  Read

Network Service:  Full Control

 

When I put permission elements under CreateFolder, they seem to
trump all the existing permissions instead of adding to them.

 

Thanks!

 

Will

 

 

-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] detect feature on upgrade

2007-01-17 Thread Don Tasanasanta
Is there a way or technique for detecting which features have already
been installed during an upgrade?

 

Aka... user runs the next version of the product and the feature tree
displays what was installed in the previous version. 

-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] re-sequence SQL execution

2007-01-17 Thread Don Tasanasanta
Is it possible to re-sequence the SQL execution to happen before
InstallFiles? 

-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] re-sequence SQL execution

2007-01-17 Thread Don Tasanasanta
Sorry, my mistake. I got things flipped around. The sequence is working
just fine the way it is. 

 



From: Rob Mensching [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, January 17, 2007 4:09 PM
To: Don Tasanasanta; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] re-sequence SQL execution

 

Why?  What is your scenario?

 

I recently made the fix to have uninstall scripts run before remove
files and install scripts to run after install files. 

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Wednesday, January 17, 2007 2:32 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] re-sequence SQL execution

 

Is it possible to re-sequence the SQL execution to happen before
InstallFiles? 

-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Website redirect?

2007-01-15 Thread Don Tasanasanta
Has there been a feature request open on this? I am looking to
accomplish the same thing and check one of the 3 checkboxes associated
with it. 

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Rob
Mensching
Sent: Friday, December 15, 2006 6:02 PM
To: Matthew Janulewicz; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Website redirect?

 

Not currently supported.   You could open a feature request if there
isn't one open on this already...

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Matthew
Janulewicz
Sent: Friday, December 01, 2006 17:20
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Website redirect?

 

I have a need to create a website that redirects to another website. In
IIS the Home Directory tab has three radio buttons.

 

When I set the Directory element of the website it defaults to the first
one. Is there a way to make it install a website that would, in effect,
select the third radio button (A redirection to a URL) and let me enter
an http:// address for the 'Directory'? 

 

--

Matthew Janulewicz

SCM Engineer

Green Dot Corporation

[EMAIL PROTECTED]

(626) 775-3857

-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Directory reassignment problem

2006-12-11 Thread Don Tasanasanta
That did the trick! Thanks a bunch. I was only doing a SetTargetPath on
my main install directory and not on the separate web folder. 

 



 

Don Tasanasanta

425-605-7423



From: Bob Arnson [mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 07, 2006 5:14 PM
To: Don Tasanasanta
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Directory reassignment problem

 

Don Tasanasanta wrote: 

My install has a very large directory structure in which the root folder
is defined by the user. If the user doesn't change the default root
directory then everything works fine but if the default is changed then
the install creates a root folder in the new location but only the files
directly under the root folder are installed there; all the folders
under the root end up installed in the default location.


How are you letting the user choose the directory? Setting a directory
property changes just the specific directory. The SetTargetPath control
event fixes up the whole subtree.




-- 
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Directory reassignment problem

2006-12-07 Thread Don Tasanasanta
My install has a very large directory structure in which the root folder
is defined by the user. If the user doesn't change the default root
directory then everything works fine but if the default is changed then
the install creates a root folder in the new location but only the files
directly under the root folder are installed there; all the folders
under the root end up installed in the default location.

 

Directory Id=TARGETDIR Name=SourceDir

  Directory Id=WWWROOT Name=wwwroot 

Directory Id=WEBSITE Name=WEBSITE 

/Directory

  /Directory !-- WWWROOT --

/Directory !-- TARGETDIR --

 

(in another wxs file)

 

DirectoryRef Id=WEBSITE

 

  Directory Id=DIR1 Name=Dir1

  /Direcotry

 

(and series of other directory Id's)

 

/DirectoryRef

 

In the UI the value of WEBSITE is changed to somewhere else but DIR1,
and all other folders declared under the WEBSITE DirectoryRef, still
reflect the default location. 

 

Is this the expected behavior? And if so... how might I all the
subsequent directories to follow WEBSITE to what ever value it contains?

 



 

Don Tasanasanta

VIACK Corporation

Redmond Washington

425-605-7423

 

-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] length of candle command line

2006-12-06 Thread Don Tasanasanta
I have run into an interesting problem using candle.exe. I have
apparently run into a command line length problem when trying to compile
my install project. Is there a command line length limit to candle? And
if so... is there also one for light? 

 



 

Don Tasanasanta

VIACK Corporation

Redmond Washington

425-605-7423

 

-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] length of candle command line

2006-12-06 Thread Don Tasanasanta
Thanks, that'll help tremendously. 

 

What is the syntax inside an .rsp file? 

 



 

Don Tasanasanta

425-605-7423



From: Rob Mensching [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, December 06, 2006 10:10 AM
To: Don Tasanasanta; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] length of candle command line

 

No, but there is a command-line limit in Windows.  Use a response file
to get around it

 

  candle @commands.rsp

 

 

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don
Tasanasanta
Sent: Wednesday, December 06, 2006 10:04
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] length of candle command line

 

I have run into an interesting problem using candle.exe. I have
apparently run into a command line length problem when trying to compile
my install project. Is there a command line length limit to candle? And
if so... is there also one for light? 

 



 

Don Tasanasanta

VIACK Corporation

Redmond Washington

425-605-7423

 

-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Enabling and disabling features dependant upon user input

2006-11-15 Thread Don Tasanasanta
How would you go about enabling or disabling a feature dependant on
input provided by the user on a previous input screen? 

 

I would like my feature select screen to show the user what they can
(and can not) install dependant upon the answers they've provided on
screens previous to my feature select screen. 

 

Is there a way to change the install level of a feature from within a UI
control? 



 

Don Tasanasanta

VIACK Corporation

Redmond Washington

425-605-7423

 

-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] unselecting features

2006-11-14 Thread Don Tasanasanta
How can I display a feature tree with all the features unselected so the
user only need to select the one feature they require? 

 



 

Don Tasanasanta

VIACK Corporation

Redmond Washington

425-605-7423

 

-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] website as a feature

2006-11-13 Thread Don Tasanasanta








Is it possible to create a feature that will handle all
aspects of website creation (web app, virtual dir, app pool) and then turn that
feature off and have msi not require IIS when not installing that feature? 







Don Tasanasanta

VIACK Corporation

Redmond Washington

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=lnkkid=120709bid=263057dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] candle command in Votive is too long

2006-10-31 Thread Don Tasanasanta








I am getting this error trying to compile my wixproj in
VS2005.



candle.exe : fatal error CNDL0005: File of type Source
with name UserInit could not be found



From what I can tell my candle.exe command line is too long
and has been truncated. My candle command is 2080 characters long. Is there a
limitation to the length of the candle command line? 



Suggestions? 



__



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=lnkkid=120709bid=263057dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] error compiling wcautil

2006-10-27 Thread Don Tasanasanta








Im getting this compile error trying to compile
wcautil.



\src\ca\wcautil\wcautil.h(46) : error C2065: '__in' :
undeclared identifier



Any ideas? Im using VS2003 with framework 1.1 and 2.0



__



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=lnkkid=120709bid=263057dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] CLR 2.0 assembly and the gac

2006-10-25 Thread Don Tasanasanta
Where did you add this code? 

__
 
Don Tasanasanta
VIACK Corporation
425-605-7423
 
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jyothi
Gummadi
Sent: Thursday, October 19, 2006 1:57 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] CLR 2.0 assembly and the gac


Hi, 

when we are creating a distribution package MSI file through WIX 
toolset it consists of light and candle .exe which are capable of 
running on .net 1.1 assemblies. but when we convert our code to 2.0 
framework, light.exe will fail to run on this 2.0 assemblies giving an 
error Invalid File Assembly  - LGHT0006. 


In order to overcome this and make light.exe run successfully on our 
2.0 assemblies add light.exe xml configuration file with the following 
information 


?xml version=1.0 encoding=utf-8? 
!-- 
Copyright (c) Microsoft Corporation.  All rights reserved. 
-- 
configuration 
startup 
supportedRuntime version=v2.0.50727 / 
supportedRuntime version=v1.1.4322 / 
/startup 
/configuration 


this file basically says to light.exe to support both 1.1 assemblies 
and 2.0 assemblies. 
now light .exe successfully  creates MSI on 2.0 net code. 


Thanks  Regards, 
Jyothi Gummadi 



-- 
View this message in context:
http://www.nabble.com/Re%3A-RE%3A-CLR-2.0-assembly-and-the-gac-tf657609.
html#a6905644
Sent from the wix-users mailing list archive 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=lnkkid=120709bid=263057dat=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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] major upgrade on per-user install not completely upgrading.

2006-09-12 Thread Don Tasanasanta








When I run a major per-user upgrade of my product all the
file version get upgraded (which is good) but not all the registry entries get
into the registry. 



Heres the behavior:



First I install a version of the product. All the registry
entries (clsids, interfaces, typelibs) get registered.



Then I run a major up grade to a later build. All the
binaries get updated but all the registry entries for one component is missing.
Apparently the upgrade was able to remove the previous reg entries but was
unable to replace them with the upgraded version. 



Does anyone have any ideas on what is happening here? Remember
this is a per-user install. Everything works fine for an admin (per-machine)
install using the same msi. 



__



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=lnkkid=120709bid=263057dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] optionally decalre default website

2006-08-30 Thread Don Tasanasanta
I declare a default website so I can create virtual directories
underneath it. 

The WebVirtualDir tag requires a website value when the virtual dir is
not a child of a Website element. 

Here's the problem...

I have one feature that creates a virtual dir. In order to create this
virtual dir I have to declare the default website for the virtual dir to
be a child of. 

But for some reason the entire install now requires IIS, not only the
feature. 

Is there any way to optionally declare the default website so only the
feature needs IIS not the entire install? 

__
 
Don Tasanasanta
VIACK Corporation
425-605-7423
 
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of david
adams
Sent: Tuesday, August 22, 2006 12:49 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] optionally decalre default website

Not sure if it will help, but we do not install web sites to the
Default 
Web Site for this (and a few other reasons).  The web site / web 
applications are defined separate from Default Web Site with their own
IP 
address that is created on the NIC.

As separate components and features, the Install User selects whether to

install the web site and the Default Web Site is impacted on neither 
install nor uninstall.

David Adams
MSN MessengerID: [EMAIL PROTECTED]





From: Don Tasanasanta [EMAIL PROTECTED]
To: david adams 
[EMAIL PROTECTED],wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] optionally decalre default website
Date: Tue, 22 Aug 2006 11:49:39 -0700
MIME-Version: 1.0
Received: from lists-outbound.sourceforge.net ([66.35.250.225]) by 
bay0-mc10-f2.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.2444);
Tue, 
22 Aug 2006 11:50:20 -0700
Received: from sc8-sf-list1-new.sourceforge.net (unknown [10.3.1.93])by

sc8-sf-spam2.sourceforge.net (Postfix) with ESMTPid B0246F8E8; Tue, 22
Aug 
2006 11:50:10 -0700 (PDT)
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 1GFbJs-0001Yf-CLfor 
wix-users@lists.sourceforge.net; Tue, 22 Aug 2006 11:49:48 -0700
Received: from redmail.viack.com ([12.129.16.152])by
mail.sourceforge.net 
with esmtp (Exim 4.44) id 1GFbJr-00033c-NSfor 
wix-users@lists.sourceforge.net; Tue, 22 Aug 2006 11:49:48 -0700
X-Message-Info: LsUYwwHHNt39sufzG0z4bK7zZoT8LslmXD55Qy/U+GY=
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]
optionally 
decalre default website
thread-index: AcbFj/MwPlo3R5XuSoaI2Jpzz/34LAAi31RQ
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=addgroup_id=1atid=21
X-BeenThere: wix-users@lists.sourceforge.net
X-Mailman-Version: 2.1.8
Precedence: list
List-Id: General discussion for Windows Installer XML 
toolset.wix-users.lists.sourceforge.net
List-Unsubscribe: 
https://lists.sourceforge.net/lists/listinfo/wix-users,mailto:wix-us
[EMAIL PROTECTED]
List-Archive: 
http://sourceforge.net/mailarchive/forum.php?forum=wix-users
List-Post: mailto:wix-users@lists.sourceforge.net
List-Help:
mailto:[EMAIL PROTECTED]
List-Subscribe: 
https://lists.sourceforge.net/lists/listinfo/wix-users,mailto:wix-us
[EMAIL PROTECTED]
Errors-To: [EMAIL PROTECTED]
Return-Path: [EMAIL PROTECTED]
X-OriginalArrivalTime: 22 Aug 2006 18:50:21.0021 (UTC) 
FILETIME=[D1A388D0:01C6C61B]

There is a minimum configuration; OS, memory, CPU, etc.

IIS is checked for but not acted upon unless one of the web features is
selected.

__

Don Tasanasanta
VIACK Corporation
425-605-7423

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of david
adams
Sent: Monday, August 21, 2006 7:09 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] optionally decalre default website

Don:

Is there a standard machine / configuration to which you are targeting
the
install?

David Adams
MSN MessengerID: [EMAIL PROTECTED]





 From: Don Tasanasanta [EMAIL PROTECTED]
 To: wix-users@lists.sourceforge.net
 Subject: [WiX-users] optionally decalre default website
 Date: Mon, 21 Aug 2006 16:05:04 -0700
 MIME-Version: 1.0
 Received: from lists-outbound.sourceforge.net ([66.35.250.225]) by
 bay0-mc7-f5.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.2444);
Mon, 21
 Aug 2006 16:05:15 -0700
 Received: from sc8-sf-list1-new.sourceforge.net (unknown
[10.3.1.93])by

 sc8-sf-spam2.sourceforge.net (Postfix) with ESMTPid 50C6C129FE; Mon,
21
Aug
 2006 16:05:14 -0700 (PDT)
 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 1GFIpV-0004r5-7efor
 wix-users@lists.sourceforge.net; Mon, 21 Aug 2006 16:05:13 -0700
 Received: from redmail.viack.com ([12.129.16.152])by
mail.sourceforge.net
 with esmtp

[WiX-users] Feature size

2006-08-28 Thread Don Tasanasanta








Is it possible to manually set the size (disk space
requirement) for a feature? So that it will display in the selection tree. 



Im running SQL database scripts in a feature and want
to show how much disk space should be allocated for the DB. 



__



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=lnkkid=120709bid=263057dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] suppress the progress indicator

2006-08-17 Thread Don Tasanasanta








Ive created a very basic wix install to install one
file. This msi is to run as quickly and quietly as possible. 



Is there a way to turn off the progress indicator during
install? I do not have a ui sequence in my code but the progress indicator
still shows. 



__



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=lnkkid=120709bid=263057dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] suppress the progress indicator

2006-08-17 Thread Don Tasanasanta
The problem is I don't have the luxury of executing the msi via
commandline in this situation. the msi is being downloaded from the web
and there is no way of passing commandline options.

__
 
Don Tasanasanta
VIACK Corporation
425-605-7423
 

-Original Message-
From: Stefan Pavlik [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 16, 2006 11:26 PM
To: Don Tasanasanta
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] suppress the progress indicator

Just run your msi with:
msiexec.exe /i YOUR_MSI_PACKAGE.msi /q

This will run absolutely silent without any UI.

Stefan

Don Tasanasanta wrote:
 I've created a very basic wix install to install one file. This msi is
 to run as quickly and quietly as possible.
 
  
 
 Is there a way to turn off the progress indicator during install? I do
 not have a ui sequence in my code but the progress indicator still
shows.
 
  
 
 __
 
  
 
 Don Tasanasanta
 
 VIACK Corporation
 
 425-605-7423
 
  
 
 
 
 __ NOD32 1.1710 (20060817) Information __
 
 This message was checked by NOD32 antivirus system.
 http://www.eset.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=lnkkid=120709bid=263057dat=121642
 
 __ NOD32 1.1710 (20060817) Information __
 
 This message was checked by NOD32 antivirus system.
 http://www.eset.com
 
 
 


 
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users
 
 
 __ NOD32 1.1710 (20060817) Information __
 
 This message was checked by NOD32 antivirus system.
 http://www.eset.com
 

-- 
Stefan Pavlik | [EMAIL PROTECTED]
Whitestein Technologies | www.whitestein.com
Panenska 28 | SK-81103 Bratislava | Slovak Republic
Tel +421(2)5930-0735 | Fax +421(2)5443-5512

-
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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] custom action to write a reg value

2006-08-01 Thread Don Tasanasanta








Sorry I didnt explain more



Yes, there will be a bootstrapper running
the install and monitoring the registry to see if the install completed
successfully. Failed, or if a reboot was necessary. Then the bootstrapper will act
accordingly. 



The install will be running silently so no
UI sequence will be involved. 



__



Don Tasanasanta

VIACK Corporation

425-605-7423













From: Derek Cicerone
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 01, 2006
3:50 PM
To: Don Tasanasanta;
wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] custom
action to write a reg value





Could you explain your scenario a bit
more? Why would it be important to know when an install has
completed? Is this for a bootstraper? Will there be some other
program continuously pinging to find out when the install is complete?



Thanks,

Derek











From: Don Tasanasanta
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 01, 2006
3:46 PM
To: [EMAIL PROTECTED];
wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] custom action
to write a reg value





Yes, that is exactly what Im trying
to do is there another way to go about this?





__



Don Tasanasanta

VIACK Corporation

425-605-7423













From: Derek Cicerone
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 01, 2006
3:29 PM
To: Don Tasanasanta;
[EMAIL PROTECTED]; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] custom
action to write a reg value





Why? Windows Installer only writes a
value if its successful (otherwise it rolls back). Are you trying
to determine if an install is successful or when
its successful?



Derek











From: Don Tasanasanta
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 01, 2006
3:26 PM
To: [EMAIL PROTECTED];
wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] custom
action to write a reg value





I would like to write the reg value after
installfinalize when Im sure that the install has been
successful.





__



Don Tasanasanta

VIACK Corporation

425-605-7423













From: Derek Cicerone
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 01, 2006
3:09 PM
To: Don Tasanasanta;
wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] custom
action to write a reg value





Just write the registry key as part of the
normal installation  why would that require a custom action?



Derek











From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Don Tasanasanta
Sent: Tuesday, August 01, 2006
2:57 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] custom action
to write a reg value





Im looking to create a reg value to indicate that the
install was successful. 



And ideas? 



__



Don Tasanasanta

VIACK Corporation

425-605-7423








-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WebServiceExtension Element

2006-07-31 Thread Don Tasanasanta








Has a solution come up for setting WebServiceExtensions?






__



Don Tasanasanta

VIACK Corporation

425-605-7423













From:
[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Joannic Laborde
Sent: Wednesday, December 14, 2005
6:19 AM
To: Jim Swainston;
wix-users@lists.sourceforge.net
Subject: RE: [WiX-users]
WebServiceExtension Element





Ive had to do this
in a C++ custom action (using the EnableWebServiceExtension method of the web
service). If theres a better way, Id also like to know it











From:
[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Jim Swainston
Sent: December 14, 2005 4:18 AM
To:
wix-users@lists.sourceforge.net
Subject: [WiX-users]
WebServiceExtension Element





Hi,



Im new to
wix so please bare with me. I am trying to allow Active Server Pages in IIS
when my installer runs can anyone tell me how to do it.



I am currently
using the WebServiceExtension element but to no effect.



Any help would be
much appreciated.



Thanks 



Jim








-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] error uninstalling website

2006-07-18 Thread Don Tasanasanta








Ive gotten my website to install and now Im
getting an error trying to uninstall the website. 



Failed to delete metabase key: /W3SVC/1/Root//



Has anyone experienced this before?



__



Don Tasanasanta

VIACK Corporation

425-605-7423








-
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] change the ARP product name at install time?

2006-07-06 Thread Don Tasanasanta








Is it possible to change the name of the ARP name at
runtime? 



__



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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] HKMU registry revisited

2006-06-29 Thread Don Tasanasanta








How does the HKMU registry attribute work with HKCR registry
entries? 



__



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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Selecting features to show in feature tree

2006-06-29 Thread Don Tasanasanta








I have several features and I would like to turn some of
them off depending on the results I get from AppSearch.



What is the usual way of doing this? 



__



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=lnkkid=120709bid=263057dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] What makes ClickThrough per-user?

2006-06-19 Thread Don Tasanasanta



i tried it on win2000 and it worked fine so i went to a 
different xp machine and it worked fine.

my test machine is 2003 server. 

cansomeone withuser accessnot install on 
2003 server? 

__

Don Tasanasanta
VIACK Corporation
425-605-7423




From: Bob Arnson [mailto:[EMAIL PROTECTED] 
Sent: Saturday, June 17, 2006 10:26 AMTo: Don 
TasanasantaCc: [EMAIL PROTECTED]; 
wix-users@lists.sourceforge.netSubject: Re: [WiX-users] What makes 
ClickThrough per-user?
Don Tasanasanta wrote: 

  
  ClickThrough generated a wix file with several errors. i 
  was able to repair the errors and run the resulting MSI but i didn't install 
  under the User context. all the test installs i have created have all worked 
  under Admin (as expected).
  
  i have tested with DisableUserInstalls = 0 and also 
  deleted the value all together. both with the same result: install failed. 
  
  
  i'm testing onXP Pro. i'm going to try it on 
  win2000 and see if there's a difference. 
  
  i don't understand it. from all that i've read this 
  should be working. its perplexing.I've never 
seen this kind of problem except on a system with harsh group policy 
lockdowns.-- 
sig://boB
http://bobs.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] What makes ClickThrough per-user?

2006-06-16 Thread Don Tasanasanta



ClickThrough generated a wix file with several errors. i 
was able to repair the errors and run the resulting MSI but i didn't install 
under the User context. all the test installs i have created have all worked 
under Admin (as expected).

i have tested with DisableUserInstalls = 0 and also deleted 
the value all together. both with the same result: install failed. 


i'm testing onXP Pro. i'm going to try it on win2000 
and see if there's a difference. 

i don't understand it. from all that i've read this should 
be working. its perplexing. 


__

Don Tasanasanta
VIACK Corporation
425-605-7423




From: Bob Arnson [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 16, 2006 3:28 PMTo: Don 
TasanasantaCc: [EMAIL PROTECTED]; 
wix-users@lists.sourceforge.netSubject: Re: [WiX-users] What makes 
ClickThrough per-user?
Don Tasanasanta wrote: 

  
  this is the install log that i'm getting from your 
  example code.Does ClickThrough generate an MSI 
that installs for you? What's the value of 
HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\Installer\DisableUserInstalls?-- 
sig://boB
http://bobs.org
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] What makes ClickThrough per-user?

2006-06-15 Thread Don Tasanasanta



i've created a one 
file ClickThrough install and generated the wix file associated with 
it.

i'm wondering... 
what exactly makes this a per-user install? 

i was unable to run 
the ClickThrough install due to compile errors but the wix file came out fine. 


__

Don Tasanasanta
VIACK Corporation
425-605-7423


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


Re: [WiX-users] What makes ClickThrough per-user?

2006-06-15 Thread Don Tasanasanta



i have tried creating a simple one file install that 
installs to appdata only and has no registry entries but i can't get it to 
install with user only access. i keep getting the same 
error:

"This installation is forbidden by system policy. Contact 
your system administrator."

so iwas wondering what elements/tags in the 
clickthrough project allow it to install with user access 
only.

______

Don Tasanasanta
VIACK Corporation
425-605-7423




From: Derek Cicerone 
[mailto:[EMAIL PROTECTED] Sent: Thursday, June 15, 2006 
3:16 PMTo: Don Tasanasanta; 
wix-users@lists.sourceforge.netSubject: RE: [WiX-users] What makes 
ClickThrough per-user?


Right now, Rob is 
fixing the warnings that make ClickThrough really painful to use. These 
were a result of recent schema changes. Its some pretty exciting changes 
because ClickThrough will utilize the same infrastructure as Heat. I 
expect the innovation in this area to flourish once all the tools use the same 
underlying infrastructure because it allows improvements to be distributed to 
all tools built on top automatically (whereas previously tallow and ClickThrough 
used completely separate codebases).

ClickThrough is 
per-user because it installs to per-user locations (I believe it installs to the 
users app data folder). It doesnt install to any per-machine locations 
(like Program Files) which would require elevated privileges. This means 
that users without administrative privileges can install the app since it wont 
impact anyone but themselves. But the really exciting part of ClickThrough 
is that its super-easy to create a simple installation that has the ability to 
automatically retrieve updates from the internet whenever the user runs your 
application.

Derek





From: 
[EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Don TasanasantaSent: Thursday, June 15, 2006 2:58 
PMTo: 
wix-users@lists.sourceforge.netSubject: [WiX-users] What makes 
ClickThrough per-user?


i've created a one file ClickThrough 
install and generated the wix file associated with 
it.



i'm wondering... what exactly makes 
this a per-user install? 



i was unable to run the ClickThrough 
install due to compile errors but the wix file came out fine. 


______

Don Tasanasanta
VIACK Corporation
425-605-7423



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