[WiX-users] Warning message

2006-11-21 Thread John Lalande

Our application is not currently officially supported on Windows 2003 (some
mumbo-jumbo about QA having to give the thumbs up). But I know it works
because Windows 2003 is what my development PC runs.

Is there a WiX way to display a warning to the user that Windows 2003 is not
a supported platform and allow them to exit or proceed?

John
-
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] New Website install

2006-11-21 Thread Zane Teh
We are using v2.0.4117.0

From: Rob Mensching
Sent: Tuesday, November 21, 2006 3:24 PM
To: Zane Teh; 'wix-users@lists.sourceforge.net'
Cc: Suresh Parameshwar
Subject: RE: [WiX-users] New Website install

What version of the WiX toolset are you using?

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Zane Teh
Sent: Tuesday, November 21, 2006 15:01
To: 'wix-users@lists.sourceforge.net'
Cc: Suresh Parameshwar
Subject: [WiX-users] New Website install

Hi All,

I am new to WIX and am trying to install basic website but am running into 
issues.  When I try installing the website I get the following error:

Failed to read IIsWebs table.  (-2147024774   )

Here is the code and settings I currently have:


1.   Snippet of code from Wix:
...
Component Id=TestWebSite_Install 
Guid=896d5f1f-eb73-461c-9fee-43c99577eb26
  WebSite Id=TestWebSite  Description=Test Web Site 
Directory=WEBSITEDIR
WebAddress Id=TestWebSiteAddress IP=* Port=80 /
  /WebSite
/Component
...

2.   There are other websites installed on Port 80 but with different 
Headers.

3.   There is NO Test Web Site that already exists

4.   When I specify IP=All Unassigned OR Port=Port# different from 80 
OR Header=localhost I get the same error.


So far I have only gotten the website to install successfully when I have 
already manually preinstalled a website called Test Web Site but even with 
this I ran into issues:


1.   I tried changing the port number to this preinstalled website from 80 
to 81 and my MSI installed without errors and changed the port back from 81 to 
80.  Although this worked, it did not work when this site was preinstalled on 
port 80 and my MSI had port 81.  When I tried this I still received the same 
error as above.

2.   When I added Header=localhost to the Website attribute in my code, 
the MSI actually overrode a preexisting website that was installed with a 
Header=localhost.  Even when I changed my preinstalled website named Test 
Web Site to have a Header=localhost when I tried my MSI it would override a 
different preexisting website.


My goal is to have it so that I do NOT need to manually install a Test Web 
Site website before I run the MSI.  If anybody could help me with this problem 
or give insight on why I am having these issues, it would be greatly 
appreciated.  Thanks!


--zane











-
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] Uninstalling while application is running

2006-11-21 Thread John Lalande

In the log file, I see:

MSI (s) (28:F8) [01:13:38:389]: Scheduling file
'C:\WINDOWS\Installer\280e0aa.msi' for deletion during post-install cleanup
(not post-reboot).
and
MSI (s) (28:F8) [01:13:38:405]: Scheduling file
'C:\WINDOWS\Installer\{3E568507-73F2-4843-ADCC-885C8DD10D67}\DA.exe' for
deletion during post-install cleanup (not post-reboot).

Then later I see many lines similar to:
MSI (s) (28:F8) [01:13:40:170]: Executing op: FileRemove(,FileName=DA.exe
,,ComponentId={48481B50-DA2C-41CF-9F18-CEB62EF80E8D})
MSI (s) (28:F8) [01:13:40:170]: Verifying accessibility of file: DA.exe

Other than that, I really don't know what to look for.

I thought maybe one of my uninstall custom actions was hosing the uninstall,
but after taking them out and going through the install-run-uninstall
routine, I see the same behavior.

The log file finishes with the optimistic:
Action ended 1:13:45: INSTALL. Return value 1.
MSI (s) (28:F8) [01:13:45:389]: Note: 1: 1724
MSI (s) (28:F8) [01:13:45:389]: Product: Desktop Assistant -- Removal
completed successfully.

It looks like the only way around this is to scab in a custom action that
does not let the uninstall proceed unless the program is shutdown.

Yuck

On 11/21/06, Rob Mensching [EMAIL PROTECTED] wrote:


 I'm at a loss then.  The log file message you note below is what I would
expect to see when a file is in use.  Is there maybe something more about
the files in use in the log file?



*From:* [EMAIL PROTECTED] [mailto:
[EMAIL PROTECTED] *On Behalf Of *John Lalande
*Sent:* Tuesday, November 21, 2006 15:30
*To:* Rob Mensching
*Cc:* Bob Arnson; wix-users@lists.sourceforge.net
*Subject:* Re: [WiX-users] Uninstalling while application is running



I am not *explicitly* suppressing any dialogs.  I have tried uninstalling
by right-clicking the MSI and selecting uninstall from the context menu, I
have tried uninstalling from the Add/Remove Programs applet, and at Bob's
suggestion I uninstalled using the command line (misexec /x ...) so that I
could log the uninstall.  All result in the same behavior.

On 11/21/06, *Rob Mensching* [EMAIL PROTECTED] wrote:

You shouldn't need a custom action.  If a file was in use then the Windows
Installer should prompt for install.  How are you uninstalling the product?
Is it possible that you are suppressing the dialog that would tell you a
reboot is required?



*From:* [EMAIL PROTECTED] [mailto:
[EMAIL PROTECTED] *On Behalf Of *John Lalande
*Sent:* Tuesday, November 21, 2006 14:29
*To:* Bob Arnson
*Cc:* wix-users@lists.sourceforge.net
*Subject:* Re: [WiX-users] Uninstalling while application is running



Does my installer have to explicitly do something to reboot if the files
are in use?  Is there a custom action I should be inserting into my
uninstall sequence?

This is a major bug in my installer.

On 11/21/06, *John Lalande* [EMAIL PROTECTED] wrote:

I have logged the uninstall, however I am not sure what I should be
looking for.

I see several entries similar to:
FileX.dll is being held in use by the following process: ...Name: AppX,
Id: 4284, Window Title: '(not determined yet)'. Close that application and
retry.

Is there somthing in particular I should look for?



On 11/21/06, *Bob Arnson*  [EMAIL PROTECTED] wrote:

John Lalande wrote:
 In this scenario, shouldn't the user be prompted to reboot and then
 the files removed on the reboot?  Or did I fail to do something
 important when I write the installer?

Yes, you should have gotten a reboot prompt. Check a verbose log -- MSI
logs additional data when files are in use.

--
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] Another strange error message

2006-11-21 Thread Cullen Waters
According to the MS article in the error message, Win2k3 comes with .NET1.1 
SP1.  The build number of .NET 1.1 on my machine is 1.1.4322.2300, which is the 
highest 1.1 build number I've seen.

I ran Microsoft Update, just to make sure, and it didn't list SP1 as an 
available update.

I've now gotten this message on three different .wxs files, and can repro every 
time on those files.  I'm in the process of upgrading all of our installers 
from v2 to v3.  None of the installers had errors when we were using v2 to 
build them.

Is there something I can do to provide debugging information?  This looks like 
a possible Wix bug to me.

From: Justin Rockwood [mailto:[EMAIL PROTECTED]
Sent: Tuesday, November 21, 2006 10:59 AM
To: Cullen Waters; 'Wix Group'
Subject: RE: [WiX-users] Another strange error message

I may be wrong, but I seem to remember that Win2003 only comes with .NET 
Framework 1.1 and not the service packs. Have you tried installing SP1?

Justin

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Cullen Waters
Sent: Tuesday, November 21, 2006 9:50 AM
To: 'Wix Group'
Subject: [WiX-users] Another strange error message

I'm getting another error message that I don't understand.  When I try to build 
an msi from two wxs files, I get an error that says the framework 1.1 SP1 might 
not be installed.  I'm running on W2k3 server, which has the .net framework 1.1 
SP1 as part of the OS install.

Can anyone provide any more information about this error?

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

Cullen Waters
SDET
Office Live
+1 425 706 6809
x 66809

-
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] Uninstalling while application is running

2006-11-21 Thread Rob Mensching
You shouldn't need a custom action.  If a file was in use then the Windows 
Installer should prompt for install.  How are you uninstalling the product?  Is 
it possible that you are suppressing the dialog that would tell you a reboot is 
required?

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Lalande
Sent: Tuesday, November 21, 2006 14:29
To: Bob Arnson
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Uninstalling while application is running

Does my installer have to explicitly do something to reboot if the files are in 
use?  Is there a custom action I should be inserting into my uninstall sequence?

This is a major bug in my installer.
On 11/21/06, John Lalande [EMAIL PROTECTED]mailto:[EMAIL PROTECTED] wrote:
I have logged the uninstall, however I am not sure what I should be looking for.

I see several entries similar to:
FileX.dll is being held in use by the following process: ...Name: AppX, Id: 
4284, Window Title: '(not determined yet)'. Close that application and retry.

Is there somthing in particular I should look for?

On 11/21/06, Bob Arnson  [EMAIL PROTECTED]mailto:[EMAIL PROTECTED] wrote:
John Lalande wrote:
 In this scenario, shouldn't the user be prompted to reboot and then
 the files removed on the reboot?  Or did I fail to do something
 important when I write the installer?

Yes, you should have gotten a reboot prompt. Check a verbose log -- MSI
logs additional data when files are in use.

--
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] Uninstalling while application is running

2006-11-21 Thread John Lalande

If it makes any difference, this is a .Net application.  Furthermore, I seem
to remember the same issue existed in our InstallShield-based installer as
well.

On 11/21/06, Rob Mensching [EMAIL PROTECTED] wrote:


 I'm at a loss then.  The log file message you note below is what I would
expect to see when a file is in use.  Is there maybe something more about
the files in use in the log file?



*From:* [EMAIL PROTECTED] [mailto:
[EMAIL PROTECTED] *On Behalf Of *John Lalande
*Sent:* Tuesday, November 21, 2006 15:30
*To:* Rob Mensching
*Cc:* Bob Arnson; wix-users@lists.sourceforge.net
*Subject:* Re: [WiX-users] Uninstalling while application is running



I am not *explicitly* suppressing any dialogs.  I have tried uninstalling
by right-clicking the MSI and selecting uninstall from the context menu, I
have tried uninstalling from the Add/Remove Programs applet, and at Bob's
suggestion I uninstalled using the command line (misexec /x ...) so that I
could log the uninstall.  All result in the same behavior.

On 11/21/06, *Rob Mensching* [EMAIL PROTECTED] wrote:

You shouldn't need a custom action.  If a file was in use then the Windows
Installer should prompt for install.  How are you uninstalling the product?
Is it possible that you are suppressing the dialog that would tell you a
reboot is required?



*From:* [EMAIL PROTECTED] [mailto:
[EMAIL PROTECTED] *On Behalf Of *John Lalande
*Sent:* Tuesday, November 21, 2006 14:29
*To:* Bob Arnson
*Cc:* wix-users@lists.sourceforge.net
*Subject:* Re: [WiX-users] Uninstalling while application is running



Does my installer have to explicitly do something to reboot if the files
are in use?  Is there a custom action I should be inserting into my
uninstall sequence?

This is a major bug in my installer.

On 11/21/06, *John Lalande* [EMAIL PROTECTED] wrote:

I have logged the uninstall, however I am not sure what I should be
looking for.

I see several entries similar to:
FileX.dll is being held in use by the following process: ...Name: AppX,
Id: 4284, Window Title: '(not determined yet)'. Close that application and
retry.

Is there somthing in particular I should look for?



On 11/21/06, *Bob Arnson*  [EMAIL PROTECTED] wrote:

John Lalande wrote:
 In this scenario, shouldn't the user be prompted to reboot and then
 the files removed on the reboot?  Or did I fail to do something
 important when I write the installer?

Yes, you should have gotten a reboot prompt. Check a verbose log -- MSI
logs additional data when files are in use.

--
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] Warning message

2006-11-21 Thread Rob Mensching
Just display a dialog that is conditionalized on the correct property.  You can 
exit the install or allow it to continue based on user decisions.

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Lalande
Sent: Tuesday, November 21, 2006 15:13
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Warning message

Our application is not currently officially supported on Windows 2003 (some 
mumbo-jumbo about QA having to give the thumbs up). But I know it works because 
Windows 2003 is what my development PC runs.

Is there a WiX way to display a warning to the user that Windows 2003 is not a 
supported platform and allow them to exit or proceed?

John
-
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] New Website install

2006-11-21 Thread david adams

Try your installer with release 3309.

David Adams
MSN MessengerID: [EMAIL PROTECTED]







Hi All,

I am new to WIX and am trying to install basic website but am running into 
issues.  When I try installing the website I get the following error:


Failed to read IIsWebs table.  (-2147024774   )

Here is the code and settings I currently have:


1.   Snippet of code from Wix:
...
Component Id=TestWebSite_Install 
Guid=896d5f1f-eb73-461c-9fee-43c99577eb26
  WebSite Id=TestWebSite  Description=Test Web Site 
Directory=WEBSITEDIR

WebAddress Id=TestWebSiteAddress IP=* Port=80 /
  /WebSite
/Component
...

2.   There are other websites installed on Port 80 but with different 
Headers.


3.   There is NO Test Web Site that already exists

4.   When I specify IP=All Unassigned OR Port=Port# different from 
80 OR Header=localhost I get the same error.



So far I have only gotten the website to install successfully when I have 
already manually preinstalled a website called Test Web Site but even 
with this I ran into issues:



1.   I tried changing the port number to this preinstalled website from 
80 to 81 and my MSI installed without errors and changed the port back from 
81 to 80.  Although this worked, it did not work when this site was 
preinstalled on port 80 and my MSI had port 81.  When I tried this I still 
received the same error as above.


2.   When I added Header=localhost to the Website attribute in my 
code, the MSI actually overrode a preexisting website that was installed 
with a Header=localhost.  Even when I changed my preinstalled website 
named Test Web Site to have a Header=localhost when I tried my MSI it 
would override a different preexisting website.



My goal is to have it so that I do NOT need to manually install a Test Web 
Site website before I run the MSI.  If anybody could help me with this 
problem or give insight on why I am having these issues, it would be 
greatly appreciated.  Thanks!



--zane















-
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


_
All-in-one security and maintenance for your PC.  Get a free 90-day trial! 
http://clk.atdmt.com/MSN/go/msnnkwlo005002msn/direct/01/?href=http://clk.atdmt.com/MSN/go/msnnkwlo005001msn/direct/01/?href=http://www.windowsonecare.com/?sc_cid=msn_hotmail



-
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] Removing files opened by wuauclt.exe

2006-11-21 Thread Brent B. Powers
I'm writing a c++ custom action to uninstall a badly installed piece of 
software before installing. Unfortunately, I can't remove a particular 
DLL because it's opened by wuauclt.exe.

It's possible that this wouldn't occur within the installer, but only 
when I'm running the CA outside.

Could anyone throw me a hint?

Cheers

-
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] induce

2006-11-21 Thread Holden E. Hannah

Soon DigiCert will be providing a new weapon to assist in preventing these 
thieves from stealing your passwords and credit card information. Er zijn toch 
een aantal ontwikkelingen geweest die het vermelden waard zijn. I know that 
when I looked into working in Spain, I was in for a shock. Well, look no 
further.
But is that the case? The answer is quite simple. However, some people say 
that. Furthermore, few schools enforce it.
De werkneemster mag zelf bepalen op welke dag binnen deze periode het verlof 
ingaat. AHA events raise crucial funds that support the life-saving research 
and educational programs run by the organization.
De vrouw eiste een torenhoge schadevergoeding, maar de rechter wees de 
vordering van de hand. Home to the oldest and largest metro in the world.
I know that when I looked into working in Spain, I was in for a shock.
Furthermore, the puppets can be used in future lessons to encourage the 
students to practice speaking.
But if you work freelance or for a state school in a third world country, 
chances are. De vraag is of het ziekenhuis onzorgvuldig heeft gehandeld en een 
schadevergoeding moet betalen. But if you work freelance or for a state school 
in a third world country, chances are.
But if you work freelance or for a state school in a third world country, 
chances are. Moeten nu alle sportende werknemers vrezen voor een lager loon bij 
ziekte?
While you most likely won't have enough cash to create such an extensive 
resource library for yourself, you can start collecting some.
php   covering a debate hosted by the Milken Institute just days before the 
election.
I've found this is especially useful for shy students who don't feel 
comfortable talking to other students.
While I personally think that every teacher should abide by that rule, many 
teachers don't. However, some people say that.
En wat als een pc nog binnen de garantieperiode telkens crasht?
Are you or will you be in Australia in mid-December?
Mag je een computer ruilen als de verkoper de volgende dag opeens een betere 
aanbieding heeft? Moeten nu alle sportende werknemers vrezen voor een lager 
loon bij ziekte?
Well, look no further. 

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


Re: [WiX-users] New Website install

2006-11-21 Thread Matthew Janulewicz
Is the error message from a dialog that pops up, or the log? Sometimes,
odd installer errors are really something else that's not 100% related
to the error that gets spit out. Or it might result from an earlier
warning that's not displayed. You might produce a log from the
commandline to get more detail:

 

Msiexec.exe /i yourmsi.msi /l* out.txt

 

You can then get some context regarding what was going on at the time
the error occurred.

 

 

-Matt

 

  _  

From: Rob Mensching [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 21, 2006 3:52 PM
To: Zane Teh; 'wix-users@lists.sourceforge.net'
Cc: Suresh Parameshwar
Subject: Re: [WiX-users] New Website install

 

Not off the top of my head.  You might try debugging in and seeing what
is exactly going wrong.  I'm not currently in a place where I can try an
IIS install.

 

From: Zane Teh 
Sent: Tuesday, November 21, 2006 15:44
To: Rob Mensching; 'wix-users@lists.sourceforge.net'
Cc: Suresh Parameshwar
Subject: RE: [WiX-users] New Website install

 

Thanks for the quick reply Rob.  I installed the build 2.0.4611.0 but
seem to getting the same error.  Any ideas?

 

--zane

From: Rob Mensching 
Sent: Tuesday, November 21, 2006 3:30 PM
To: Zane Teh; 'wix-users@lists.sourceforge.net'
Cc: Suresh Parameshwar
Subject: RE: [WiX-users] New Website install

 

That's a pretty old build.  I believe there was a couple bug fixes more
recent than that which may fix the issue you are seeing.  Try grabbing a
newer version.

 

From: Zane Teh 
Sent: Tuesday, November 21, 2006 15:27
To: Rob Mensching; 'wix-users@lists.sourceforge.net'
Cc: Suresh Parameshwar
Subject: RE: [WiX-users] New Website install

 

We are using v2.0.4117.0

 

From: Rob Mensching 
Sent: Tuesday, November 21, 2006 3:24 PM
To: Zane Teh; 'wix-users@lists.sourceforge.net'
Cc: Suresh Parameshwar
Subject: RE: [WiX-users] New Website install

 

What version of the WiX toolset are you using?

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Zane Teh
Sent: Tuesday, November 21, 2006 15:01
To: 'wix-users@lists.sourceforge.net'
Cc: Suresh Parameshwar
Subject: [WiX-users] New Website install

 

Hi All, 

 

I am new to WIX and am trying to install basic website but am running
into issues.  When I try installing the website I get the following
error:

 

Failed to read IIsWebs table.  (-2147024774   )

 

Here is the code and settings I currently have:

 

1.  Snippet of code from Wix:

...

Component Id=TestWebSite_Install
Guid=896d5f1f-eb73-461c-9fee-43c99577eb26

  WebSite Id=TestWebSite  Description=Test Web Site
Directory=WEBSITEDIR

WebAddress Id=TestWebSiteAddress IP=* Port=80 /

  /WebSite

/Component

...

2.  There are other websites installed on Port 80 but with different
Headers.

3.  There is NO Test Web Site that already exists

4.  When I specify IP=All Unassigned OR Port=Port# different from
80 OR Header=localhost I get the same error.

 

 

So far I have only gotten the website to install successfully when I
have already manually preinstalled a website called Test Web Site but
even with this I ran into issues:

 

1.  I tried changing the port number to this preinstalled website
from 80 to 81 and my MSI installed without errors and changed the port
back from 81 to 80.  Although this worked, it did not work when this
site was preinstalled on port 80 and my MSI had port 81.  When I tried
this I still received the same error as above.

2.  When I added Header=localhost to the Website attribute in my
code, the MSI actually overrode a preexisting website that was installed
with a Header=localhost.  Even when I changed my preinstalled website
named Test Web Site to have a Header=localhost when I tried my MSI
it would override a different preexisting website.

 

 

My goal is to have it so that I do NOT need to manually install a Test
Web Site website before I run the MSI.  If anybody could help me with
this problem or give insight on why I am having these issues, it would
be greatly appreciated.  Thanks!

 

 

--zane

 

 

 

 

 

 

 

 

 

 

 

-
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 Search

2006-11-21 Thread Jim_Woolfenden

I abandoned that approach...
Instead this seems to work ok so far...

Property Id=ORACLE9
  
 DirectorySearch Id=NewSignature13
Path=$(env.windir)\Assembly\GAC\Oracle.DataAccess\9.2.0.401__89b483f429c47342
Depth=2
 FileSearch Id=NewSignature13 LongName=Oracle.DataAccess.dll  /
  /DirectorySearch
 
/Property

Property Id=ORACLE10
  DirectorySearch Id=NewSignature12
Path=$(env.windir)\Assembly\GAC_32\Oracle.DataAccess\2.102.2.20__89b483f429c47342
Depth=2
FileSearch Id=NewSignature12 LongName=Oracle.DataAccess.dll  /
  /DirectorySearch
/Property
-- 
View this message in context: 
http://www.nabble.com/Directory-Search-tf2670191.html#a7472993
Sent from the wix-users mailing list archive at Nabble.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


Re: [WiX-users] Elevation on Vista

2006-11-21 Thread Wilson, Phil
I believe you're back in the non-elevated part of the installation
because by default you can't be elevated unless you run as a deferred
CA, and you can't be deferred outside the InstallInitialize/Finalize
actions. It's an immediate CA, right? 

Phil Wilson 


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Rob
Hamflett
Sent: Tuesday, November 21, 2006 3:11 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Elevation on Vista

This is really an MSI question, but I asked in one of the other
newsgroups and got no response.  I thought I'd try in here.

The guidelines for installers on Vista suggest that a good method is to
run the UI sequence as the user, and then elevate when the user clicks
the final Install button.  When the InstallExecuteSequence has
finished and the user is looking at the final exit dialog, is the
install still running as an admin, or as the user.  It would sort of
make sense if it had reverted to the user, since the
InstallExecuteSequence has finished and we're back in the UI sequence,
but I was wondering if anyone knew for sure.

The reason I need to know is this: if I launch an application from the
final dialog, which user is that application running as?

Rob



-
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] Multiple parameters in CA dll

2006-11-21 Thread John Watson

You'll have to forgive Rob for being a man of few words - he's a newlywed
and probably out of breath ;) (Congratulations!). Here's how I passed
multiple properties but I can't take credit for this - I found the example
somewhere else:


!-- custom action that passes a global property to the 'DoCleanup' custom
action (note the property 'Name' being set is actually the name of the
custom action containing the script!) --
CustomAction Id=DoCleanup.SetProperty Return=check Property=DoCleanup
Value=[SITE.ID]|[SITE.NAME]|[SITE.PWD]|IISVERSION|[ComputerName]|[INSTALLDIR]
/
!-- define a deferred custom action and point to the binary resource
that'll be embedded --
CustomAction Id=DoCleanup Return=check Execute=deferred
BinaryKey=Cleanup_vbs VBScriptCall=Execute/

Binary Id=Cleanup_vbs src=Cleanup.vbs/

   InstallExecuteSequence
 !-- schedule cleanup after files are installed --
  Custom Action=DoCleanup.SetProperty After=InstallFiles/
  Custom Action=DoCleanup After=DoCleanup.SetPropertyNOT
Installed/Custom
   /InstallExecuteSequence
In the above example, several properties are passed separated by the pipe
(|) character which are then parsed into separate values in the VBScript
with:   a = Split(Property(CustomActionData),|)

Regards,
John


On 11/21/06, Rob Mensching [EMAIL PROTECTED] wrote:


 No, but your CustomAction can read Properties.



*From:* [EMAIL PROTECTED] [mailto:
[EMAIL PROTECTED] *On Behalf Of *Bahar Shah
*Sent:* Friday, November 03, 2006 06:44
*To:* wix-users@lists.sourceforge.net
*Subject:* [WiX-users] Multiple parameters in CA dll



Is there a way to pass multiple parameter to a function in a CA dll ?
Say I need to pass 3 paramater to a function in my dll ?
Can I pass parameter to CA scheduled for  imediate action and not deffered


Regards
Bahar

-
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



-
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] MSVC8 redistributables?

2006-11-21 Thread Eric Fesh
John:

I was using a custom action to do that until today. I'm now linking the runtime 
straight into my executable instead of leaving 
it hanging as a dependency on a DLL.

--

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

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


John Calcote wrote:
 How can I add a dependency to my WIX installer package on the VC8 
 redistributables (CRT, etc)? BTW, I build from the command line, so I'm 
 interested in finding out how to manually add such a dependency by hand using 
 an editor - not through a VS project.
 
 Thanks!
 --john
 
 -
 John Calcote ([EMAIL PROTECTED])
 Sr. Software Engineeer
 Novell, Inc.
 
 
 
 
 
 BEGIN:VCARD
 VERSION:2.1
 X-GWTYPE:USER
 FN:John Calcote
 TEL;WORK:1-801-861-7517
 ORG:;Unified Identity System Eng TE
 TEL;PREF;FAX:801/861-2292
 EMAIL;WORK;PREF;NGW:[EMAIL PROTECTED]
 N:Calcote;John;;Sr. Software Engineer
 TITLE:Sr. Software Engineer
 ADR;DOM;WORK;PARCEL;POSTAL:;PRV-H-511;;Provo
 LABEL;DOM;WORK;PARCEL;POSTAL;ENCODING=QUOTED-PRINTABLE:John Calcote=0A=
 PRV-H-511=0A=
 Provo
 END:VCARD
 
 
 
 
 
 -
 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

-
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