Re: [WiX-users] Fixing a broken uninstall

2008-01-08 Thread JCWrs



JCWrs wrote:
 
 I have customActions scheduled just after ProcessComponents that uninstall
 my services if the uninstall is being run.  However, when the first one
 fires, I get an error saying that one of my dlls or one of its
 dependencies cannot be found.  I check the file system and all the files
 necessary are present.  The CA is scheduled before RemoveFiles so I can't
 figure out what the problem is.
 
 My other question is, if\when I do fix this problem, how do I uninstall
 those apps that are stuck on my test machine now?  If I keep the GUIDs the
 same, any fix I make isn't reflected so what do I need to change to get
 the fix in?
 

To add to the above message, I'm looking at the log file of the broken
uninstall and it appears my CA's all run just fine, then, during
InstallFinalize for some reason, these lines appears (this all happens after
a long list of ComponentUnregister lines):

 Executing op:
ActionStart(Name=_89D56755_9461_4BB6_A22B_E4AAB810C4EF.uninstall,,)
MSI (s) (A4:80) [13:05:38:425]: Executing op:
CustomActionSchedule(Action=_89D56755_9461_4BB6_A22B_E4AAB810C4EF.uninstall,ActionType=1025,Source=BinaryData,Target=ManagedInstall,CustomActionData=/installtype=notransaction
/action=uninstall /LogFile= FileThatCantBeFound.dll
C:\DOCUME~1\user\LOCALS~1\Temp\CFGB.tmp)
MSI (s) (A4:A8) [13:05:38:425]: Invoking remote custom action. DLL:
C:\WINDOWS\Installer\MSI92.tmp, Entrypoint: ManagedInstall
MSI (s) (A4!5C) [13:05:38:505]: Note: 1: 2205 2:  3: Error 
MSI (s) (A4!5C) [13:05:38:505]: Note: 1: 2228 2:  3: Error 4: SELECT
`Message` FROM `Error` WHERE `Error` = 1001 
MSI (s) (A4!5C) [13:05:40:667]: Note: 1: 2205 2:  3: Error 
MSI (s) (A4!5C) [13:05:40:667]: Note: 1: 2228 2:  3: Error 4: SELECT
`Message` FROM `Error` WHERE `Error` = 1709 
MSI (s) (A4!5C) [13:05:40:667]: 
MSI (s) (A4:A8) [13:05:40:667]: Leaked MSIHANDLE (6) of type 790531 for
thread 3676
MSI (s) (A4:A8) [13:05:40:667]: Note: 1: 2769 2:
_89D56755_9461_4BB6_A22B_E4AAB810C4EF.uninstall 3: 1 
MSI (s) (A4:A8) [13:05:40:667]: Note: 1: 2205 2:  3: Error 
MSI (s) (A4:A8) [13:05:40:667]: Note: 1: 2228 2:  3: Error 4: SELECT
`Message` FROM `Error` WHERE `Error` = 2769 
MSI (c) (80:C4) [13:05:38:505]: Font created.  Charset: Req=0, Ret=0, Font:
Req=MS Shell Dlg, Ret=MS Shell Dlg

Error 1001. Exception occurred while initializing the installation:
System.IO.FileNotFoundException: Could not load file or assembly
'file:///FileThatCantBeFound.dll' or one of its dependencies. The system
cannot find the file specified..
DEBUG: Error 2769:  Custom Action
_89D56755_9461_4BB6_A22B_E4AAB810C4EF.uninstall did not close 1 MSIHANDLEs.
The installer has encountered an unexpected error installing this package.
This may indicate a problem with this package. The error code is 2769. The
arguments are: _89D56755_9461_4BB6_A22B_E4AAB810C4EF.uninstall, 1, 
MSI (s) (A4:80) [13:05:40:677]: User policy value 'DisableRollback' is 0
MSI (s) (A4:80) [13:05:40:677]: Machine policy value 'DisableRollback' is 0
Action ended 13:05:40: InstallFinalize. Return value 3.
-- 
View this message in context: 
http://www.nabble.com/Fixing-a-broken-uninstall-tp14696729p14696842.html
Sent from the wix-users mailing list archive at Nabble.com.


-
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] Fixing a broken uninstall

2008-01-08 Thread JCWrs

I have customActions scheduled just after ProcessComponents that uninstall my
services if the uninstall is being run.  However, when the first one fires,
I get an error saying that one of my dlls or one of its dependencies cannot
be found.  I check the file system and all the files necessary are present. 
The CA is scheduled before RemoveFiles so I can't figure out what the
problem is.

My other question is, if\when I do fix this problem, how do I uninstall
those apps that are stuck on my test machine now?  If I keep the GUIDs the
same, any fix I make isn't reflected so what do I need to change to get the
fix in?
-- 
View this message in context: 
http://www.nabble.com/Fixing-a-broken-uninstall-tp14696729p14696729.html
Sent from the wix-users mailing list archive at Nabble.com.


-
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] Duplicate GUIDs caused by managed merge modules

2008-01-07 Thread JCWrs

I used to build my wix installer with SharpDevelop and I never noticed this
problem since it didn't throw an error.  I'm migrating it to Visual Studio
so it can be built alongside everything else, nightly, and I'm seeing a
problem.  The merge modules I use which are generated by VS setup projects
(I have no say in this) are read in by wix and their base components are all
showing the same GUID.  Obviously, this is not what I want and VS throws an
error because of it.  2 questions:

1)How can I change what GUID is assigned to their base components?  The
merge module signatures are different, I thought those were supposed to be
the GUIDs?

2)Why did SharpDevelop ignore this problem and is there a way to do that
with Visual Studio?  What are the potential problems with doing so?
-- 
View this message in context: 
http://www.nabble.com/Duplicate-GUIDs-caused-by-managed-merge-modules-tp14674436p14674436.html
Sent from the wix-users mailing list archive at Nabble.com.


-
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


Re: [WiX-users] Duplicate GUIDs caused by managed merge modules

2008-01-07 Thread JCWrs


Richard-45 wrote:
 
 
 In article [EMAIL PROTECTED],
 JCWrs [EMAIL PROTECTED]  writes:
 
 [...]  The merge modules I use which are generated by VS setup projects
 (I have no say in this) are read in by wix and their base components are
 all
 showing the same GUID.
 
 Let me guess, you have several merge modules which have files that
 have the same name in the same location relative to the merge module's
 folder?
 
 

Yep, they all were in Module Retargetable Folder.  I changed the name in VS,
but that didn't help.  I figured out you need to change the display name of
the folder, which I could only find in the .proj file.  Once I did that, it
worked like a champ.  Thanks


-- 
View this message in context: 
http://www.nabble.com/Duplicate-GUIDs-caused-by-managed-merge-modules-tp14674436p14675970.html
Sent from the wix-users mailing list archive at Nabble.com.


-
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


Re: [WiX-users] SQL Elements are not recognized in Visual Studio?

2008-01-03 Thread JCWrs

I did not have those so I added them, the top of my file now looks like this:

Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'
 xmlns:util=http://schemas.microsoft.com/wix/UtilExtension;
 xmlns:sql= http://schemas.microsoft.com/wix/SqlExtension;
 xmlns:ui=http://schemas.microsoft.com/wix/UIExtension;

I added a reference to WixSqlExtension, WixUIExtension and WixUtilExtension
in my VS project as well.

I still get an error that says the Product element contains an unexpected
child element 'User'.
I get another one that says the Component element contains an unexpected
child element 'SqlDatabase'.

Any other ideas?


Did you add the references to your extensions in your WiX project?
...and, did you add the schemas to the wxs file?

i.e.
Wix xmlns=http://schemas.microsoft.com/wix/2006/wi;
 xmlns:util=http://schemas.microsoft.com/wix/UtilExtension;
 xmlns:sql=http://schemas.microsoft.com/wix/SqlExtension;
 xmlns:ui=http://schemas.microsoft.com/wix/UIExtension;

Regards,
//aj


-- 
View this message in context: 
http://www.nabble.com/SQL-Elements-are-not-recognized-in-Visual-Studio--tp14587359p14599738.html
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
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] SQL Elements are not recognized in Visual Studio?

2008-01-02 Thread JCWrs

I Installed Votive 3.0 and I started testing out a project in Visual Studio. 
When I tried to build the project it did not recognize SQLDatabase and User
as valid tags.  I checked the help file to make sure I had the proper
version and it shows the definition for both.  Have I missed some
versionsetting in VS or is there something else I need to do?
-- 
View this message in context: 
http://www.nabble.com/SQL-Elements-are-not-recognized-in-Visual-Studio--tp14587359p14587359.html
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
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] Unknown Error: InstallUtilLib.dll

2007-12-19 Thread JCWrs

I am aware that it is not the suggested practice to use Installer class
derived custom actions in Wix.  However, I don't get to make that decision,
I simply need to make it work in the installer.  I followed the instructions
posted here:

http://blogs.msdn.com/josealmeida/archive/2004/11/08/253831.aspx

I used the config file posted here:

http://blog.vagmim.com/2004/09/installing-windows-services-created.html

Except I changed the runtime to 2.0.x.x.

The only thing I can guess could be the issue is that, when I run
InstallUtil.exe on my own machine on this dll, it only works in its build
folder with several other files.  If you remove it and isolate it in a
folder, InstallUtil.exe does not work and it shows errors.  Running it in
wix, I assume it is isolated so maybe thats why it fails?  How can I run it
during installation and allow it access to those other files?  Is this some
information I need to add to the config file?
-- 
View this message in context: 
http://www.nabble.com/Unknown-Error%3A-InstallUtilLib.dll-tp14425979p14425979.html
Sent from the wix-users mailing list archive at Nabble.com.


-
SF.Net email is sponsored by:
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


Re: [WiX-users] Uninstall removes everything in the folder.

2007-07-30 Thread JCWrs



 MSI shouldn't remove directories that aren't empty. Check a verbose log 
 to see which files are getting deleted and then when the folder's 
 getting deleted.
 
 

I've continued to track this problem and I'm still no where.  I have combed
the verbose log, but there is no reference to any removal of the folder I
install to.  I see all the FileRemove actions, but I see nothing beyond that
that would explain what I'm seeing.  Can anyone tell me what I should see
when this folder is deleted?  Any other ideas as to a setting or something
that I may have set (I don't believe I have set anything beyond the default
for that folder, but its worth a shot)?

I'm also seeing that, if I edit a file after installation it is still
removed with everything else (perhaps it is deleted with the folder, it
might be impossible to know)...how would I go about not uninstalling
anything that has been edited?
-- 
View this message in context: 
http://www.nabble.com/Uninstall-removes-everything-in-the-folder.-tf4052181.html#a11882922
Sent from the wix-users mailing list archive at Nabble.com.


-
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


[WiX-users] Uninstall removes everything in the folder.

2007-07-09 Thread JCWrs

Ok, I am having a problem with the uninstall of my app.  Whenever I run the
uninstall, the entire folder that I installed to is removed including
anything that may have already been in that folder or was added in later. 
Any ideas as to what I'm doing wrong?

-- 
View this message in context: 
http://www.nabble.com/Uninstall-removes-everything-in-the-folder.-tf4052181.html#a11510062
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


[WiX-users] Change in UI New Install VS Change

2007-05-23 Thread JCWrs

Hello all, At present when I go to Add\Remove Programs and click the Change
button, my installer launches and runs as if a new installation is
happening.  This is ok as the features box does show what is installed and
what is not correctly, but one major drawback is that the user has to
re-enter where they want to install the files even if they are removing a
feature.  So, a few questions:

1) How can I specify a different UI for the Change process?

2) When I run that process, is there a way to tell where the files have been
installed previously?

Thanks
-- 
View this message in context: 
http://www.nabble.com/Change-in-UI-New-Install-VS-Change-tf3806138.html#a10771490
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


Re: [WiX-users] Merge Modules not retargetable during install?

2007-05-15 Thread JCWrs

I really need an explanation here as I'm obviously not understanding what is
going on.

Basicly my merge module and my components all install to INSTALLDIR.

INSTALLDIR has a default value of c:\Program Files.

During the installation the user can change that value through the UI to,
lets say, c:\Test.

When I run this scenario, my merge module installs to c:\Program Files while
my components install to c:\Test.

If I change the default value of INSTALLDIR, my merge module follows it.

What am I doing wrong???
-- 
View this message in context: 
http://www.nabble.com/Merge-Modules-not-retargetable-during-install--tf3754445.html#a10625804
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


[WiX-users] DIRCA_NEWRETARGETABLEPROPERTY1?

2007-05-15 Thread JCWrs

This lovely CustomAction resides in a merge module I use in my installer.

1) This CA comes with a condition that its directory=.  Does anyone know
how to keep that from happening (generating the merge module via Visual
Studio)?  I can always manually remove the condition, but if I could remove
the condition from the module all together it would be great.

2) I manually cleared the condition via Orca and got this CA to run once,
but it ran too early to pick up the change I was hoping it would find. 
Later in the log, after the change, it was called again, but skipped because
its condition was false.  I removed the condition.  Any ideas as to what
might be happening here.

For the record it is a type 307 CA.
-- 
View this message in context: 
http://www.nabble.com/DIRCA_NEWRETARGETABLEPROPERTY1--tf3760550.html#a10629403
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


[WiX-users] Stuck with an uninstall that doesn't work?

2007-05-04 Thread JCWrs

So I ran my installer and all was well.  On my attempt to uninstall, however,
I run into an error.  I understand why I'm getting the error and I'm pretty
sure I can fix it, but because of it I can't uninstall the app.  Everytime I
try to re-run the installer (after I've made the changes to make sure the
uninstall will work next time) the changes are not there and I still get the
error (I checked the verbose log and its like the changes never happened). 
Any ideas to make this app go away so I can start over?
-- 
View this message in context: 
http://www.nabble.com/Stuck-with-an-uninstall-that-doesn%27t-work--tf3693395.html#a10327330
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


[WiX-users] Merge Modules evaluating earlier then Components?

2007-04-24 Thread JCWrs

Here is what I've got:

I have looked in Orca and edited the directory structure so that my merge
module installs to the INSTALLDIR directory as all of my other components
do.  However, when I run my install the Merge Module installs to the default
value of INSTALLDIR while the components install to the user input value of
INSTALLDIR.

So my question, do the merge modules evaluate at an earlier time then the
Components?  Is there something else that would explain the differing values
of the same property?
-- 
View this message in context: 
http://www.nabble.com/Merge-Modules-evaluating-earlier-then-Components--tf3640688.html#a10167585
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


[WiX-users] Merge Modules in Wix

2007-04-23 Thread JCWrs

For various reasons, I need to use a previously built merge module in my wix
installer.  I looked around and found the syntax for this and put it into my
wxs file.  However, I got no output.  I have confirmed that the merge module
files are in the Module Retargetable Folder and I'm certain this merge
module works as we have another installer that uses it.  I'm somewhat
stumped.  Heres the code:

Directory Id='SETUPCAB' Name='Server'
Merge Id=SetupMerge Language='1033' src='ServerMerge.msm' 
DiskId='1' /
/Directory

Feature Id='SETUP.CAB' Title='SETUP.CAB' Description='Descrip of SETUP.CAB'
Display='expand' Level='1'
  MergeRef Id='SetupMerge' /
  /Feature

There are no errors, it just doesn't install the files.  Any ideas?
-- 
View this message in context: 
http://www.nabble.com/Merge-Modules-in-Wix-tf3633301.html#a10145618
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


[WiX-users] Sequence of Install?

2007-04-19 Thread JCWrs

Ok, I have an installer with 2 custom actions I want to run AFTER all the
files have been installed on the target computer.  I thought that by using
an InstallUISequence that had them run after ProgressDialog that would
occur, but no such luck.  Each time I run the installer my second CA fails
because the files are not there yet (I get the error message while the
ProgressDialog box is still up).  I cannot schedule the CA's before the
ExitDialog or I get an error and there are no other Dialogs between the 2. 
Is there another way to schedule these to get the result or do I need to add
a dialog between the 2?

As always, thanks for the help.
-- 
View this message in context: 
http://www.nabble.com/Sequence-of-Install--tf3608713.html#a10083348
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


Re: [WiX-users] Sequence of Install?

2007-04-19 Thread JCWrs

Julie, thanks!  That helped quite a bit.

I'm still having one problem, however.  When my CA runs it looks to see if
the installed files are there by looking at INSTALLDIR.  I've run the
installer with the CA commented out and the files do get installed
correctly.  The CA program also works if I manually run it post Install. 
When I run it all together and schedule the CA for After CreateFolders,
however, it errors off and says it cannot find the files.

I assume the CA is running before the files are copied over?  When is the
latest I can call this CA during the install process?
-- 
View this message in context: 
http://www.nabble.com/Sequence-of-Install--tf3608713.html#a10085392
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


Re: [WiX-users] Sequence of Install?

2007-04-19 Thread JCWrs

Yes it does.  Thanks!


Does it fix that if you schedule it after='InstallFiles' instead of
CreateFolders?

Daryn.

-- 
View this message in context: 
http://www.nabble.com/Sequence-of-Install--tf3608713.html#a10085591
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


[WiX-users] File not found?

2007-04-16 Thread JCWrs

I have these two lines for my files: 

File Id='Co0' LongName='ConfigurationService.svc' Name='Configur.svc' 
Source='c:\CabFilesInstaller\SchedulingServicesCAB.CAB' Vital='yes' 
DiskId='1'/ 
   File Id='Da1' LongName='DataListService.svc' Name='DataList.svc' 
Source='c:\CabFilesInstaller\SchedulingServicesCAB.CAB' Vital='yes' 
DiskId='1'/ 

The 2 files are present in the Source directory named exactly what the 
long name specifies.  I get this error message: 

The file with id 'Co0' and name 'Configur.svc|ConfigurationService.svc' 
could not be found with source path: 
'c:\CabFilesInstaller\SchedulingServicesCAB.CAB'. (LGHT0099) 
The file with id 'Da1' and name 'DataList.svc|DataListService.svc' could 
not be found with source path: 
'c:\CabFilesInstaller\SchedulingServicesCAB.CAB'. (LGHT0099) 

Is the Id a problem?  What am I doing wrong? 

-- 
View this message in context: 
http://www.nabble.com/File-not-found--tf3587498.html#a10025512
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


[WiX-users] Custom Action that references C# classes?

2007-04-11 Thread JCWrs

One of our developers has written a class that is able to set-up all of the
virtual directories, websites and IIS that our app requires.  Is there a way
to write a custom action that executes a file that calls functions from this
C#.Net class?

I realize that I can call pre-defined Custom Actions to set-up all of this
using certain wixlib's, but I'm trying to avoid doing so if possible (why
re-write it all when its already done?).
-- 
View this message in context: 
http://www.nabble.com/Custom-Action-that-references-C--classes--tf3560476.html#a994
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


[WiX-users] SelectionTree example?

2007-04-10 Thread JCWrs

Does anyone know where to find a good example of the WiX code necessary to
implement a SelectionTree correctly?  

What I'm trying to do is simply put a form in my UI to select which features
are installed and which are not, but I can't seem to figure out how to do
so.  Can anyone give me a code snippet or point me to a good example of how
to make this happen?
-- 
View this message in context: 
http://www.nabble.com/SelectionTree-example--tf3554507.html#a9924853
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] Why is it skipping my UI?

2007-04-05 Thread JCWrs



Bob Arnson-3 wrote:
 
 
 
 Why are you specifying ExecuteAction? By placing it at sequence number 
 1, no other UI will run before it.
 
 -- 
 sig://boB
 http://bobs.org
 
 
 

Ok, I took that out, but I get the same result...no UI.  I've been trying
different things (including not having an InstallUISequence at all) the past
couple of days, but nothing seems to work.



-- 
View this message in context: 
http://www.nabble.com/Why-is-it-skipping-my-UI--tf3528449.html#a9857513
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