[WiX-users] Reinstall driver

2008-02-14 Thread Anton Filippov
Hi I'm using WiX and my own dll for install driver (because driver not signed yet) ... Function ReInstallDRV uses SetupCopyOEMInfW with SP_COPY_REPLACEONLY flag (because driver file already copied in windows\system32\drivers directory) But this Action not start (in reinstall.log, REINSTAL

Re: [WiX-users] Newbie Q - changing TARGETDIR based on mode

2007-10-10 Thread Anton Filippov
Hi. msiexec /i ...msi /quiet TARGETDIR=C:#Temp ? On 10/10/07, Rad Ricka <[EMAIL PROTECTED]> wrote: > > Hello, > > sorry for asking a newbie question; but googling didn't help much. > > Could somebody please point me to an example that allows specific path for > TARGETDIR dir when running msiexec

Re: [WiX-users] Upgrade... again

2007-09-19 Thread Anton Filippov
> If it is not installed, then run it normally. If it is installed, then > add the reinstall command line options. > > -Brian Simoneau > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Anton > Filippov > Sent: Wednesday

[WiX-users] Upgrade... again

2007-09-19 Thread Anton Filippov
Hi All! I wrote install for my app. Now I want to (minor - change some files) upgrade. I change version and package of course. Create bottstrapper for this in iexpress with command line: msiexec /i my.msi REINSTALL=ALL REINSTALLMODE=vomus It's Ok: files changed and etc... But if I run that .exe

[WiX-users] Stop service with checkbox

2007-08-10 Thread Anton Filippov
Hello All! I've question: How to stop service (local windows service - ICS Name="SharedAccess") if user set some checkbox throght standart wix script (not in custom action)? I can stop service silent, but this is not right, I think. Thanks. -

[WiX-users] Cyrillic startup

2007-08-02 Thread Anton Filippov
Hi all I have russian os windows (localized) and when I try to wrinte into startup foder: This shortcut coping into 'Startup' directory, but localized directory has other name in cyrillic. Is there bug or I did something wrong? If I write directly into registry (Run branch) - is there right

[WiX-users] Error on Uninstall when some files missed (deleted)

2007-07-23 Thread Anton Filippov
Hi All! I have error on uninstall if some files in my install dir are deleted manually (for example). When I execute install.msi, I've following message: Another version of this product is already installed... If I try uninstall throught Add|Remove Prg, system promt me select install source (but

Re: [WiX-users] Previous Install Folder and Update

2007-07-05 Thread Anton Filippov
stall - all correct. Can I do this? I've found line in log file: RemoveExistingProducts: Application: {OLD INSTALL GUID}, Command line: UPGRADINGPRODUCTCODE={GUID} CLIENTUILEVEL=0 REMOVE=ALL Can I change this? Anton On 7/4/07, Bob Arnson <[EMAIL PROTECTED]> wrote: Anton Filippov wr

[WiX-users] Previous Install Folder and Update

2007-07-04 Thread Anton Filippov
Hi all! Two questions: 1. How to determine install folder for previous installation (when I do major update)? 2. When I intstall major update in same folder as previuos version - after setup process intaller do RemoveExitingProduct and delete new files. How I can avoid this? Or I should install

Re: [WiX-users] Some questions about upgrade

2007-06-25 Thread Anton Filippov
Only .exe file not changed. My html and text files changed successfully. Is intaller do checks for files version (inside file, not installer) when install new version? - This SF.net email is sponsored by DB2 Express Download D

Re: [WiX-users] Some questions about upgrade

2007-06-24 Thread Anton Filippov
Also, if I try to install following version: Install doing downgrade. In Add|remove Program version changes (and name), but files are not changed. - This SF.net email is sponsored by DB2 Express Download DB2 Express

Re: [WiX-users] Some questions about upgrade

2007-06-24 Thread Anton Filippov
Hello I don't understand about update process as minor. I installed version 1.0.1 (for example) as clean install (without previous) It's OK. After that I install nex version 1.0.2 - change one file through (REINSTALL=ALL REINSTALLMODE=vomus) It's OK. File changed, in Add|Remove Pr

Re: [WiX-users] Some questions about upgrade

2007-06-21 Thread Anton Filippov
Ok, but I can't upgrade my app. I have following main code: http://schemas.microsoft.com/wix/2006/wi";> NEWERFOUND Now, I change u.exe to other size and change version (lesson 4 by Gábor) for small (minor) update. http://schemas.microsoft.com/wix/

[WiX-users] Some questions about upgrade

2007-06-20 Thread Anton Filippov
Hi all I have following structure for example in version 1.0: Component1 { my.exe } Component2 { aaa.html, bbb.html } Example 1: If I want to upgrade version to ver1.1 and change my.exe (Component1) I do minor (small) update. Example 2: Now, I want to upgrade to ver1.2 and change my.exe and add

[WiX-users] upgrade don't change any files

2007-05-10 Thread Anton Filippov
Hi I have minor update (package-guid changed, upgrade and product - not changed) My minwor upgrade have some new versions for files and new features. If I run ny .msi file with C:\WINDOWS\system32\msiexec.exe /i D:\Anton\!output\setup\icsinstall.msi /log reinstall.log REINSTALL=ALL REINSTALLMOD

[WiX-users] Change package name

2007-05-08 Thread Anton Filippov
Hi When I migrate to WiX3, I changed package name. And created .exe with iexpress And now, when I try to install new package over installed previous, I have an error, during reinstall. Can't find C:\Docume~1\A\Locals~1\...\icsinstall.msi (now I use install.msi) How to change msi-package name an

Re: [WiX-users] ICE20: FilesInUse not Found

2007-04-27 Thread Anton Filippov
t; Installed AND NOT (OLDINSTALLV3 OR OLDINSTALLV4) Installed AND NOT (OLDINSTALLV3 OR OLDINSTALLV4) NOT Installed AND (OLDINSTALLV3 OR OLDINSTALLV4) ... // set Error messages, progress text, ui text, binaries On 4/26/07, Bob Arnson <[EMAIL PROTECTED]> wrote: Anton Filippov wrote: > Here I must

[WiX-users] ICE20: FilesInUse not Found

2007-04-26 Thread Anton Filippov
Hi. Here I must write information about this dialog? I have FileInUseDlg.wxs: ... * 1 1 1 [DlgTopFont]Some files that need to be updated are currently in use. The following applications are using files that need to be updated by this setup. Close these applications and then click Retry

Re: [WiX-users] How to remove reg keys by condition?

2006-11-01 Thread Anton Filippov
I think, that works, If property set in LaunchCondition section. If I set this property from checkbox, for example, during installation sequnce - this not work. Code: NOT KeepOldReg KeepOldReg property set through checkbox in SelectionTree dialog. Anton. On 11/2/06, sbarry <[EMAIL

[WiX-users] How to remove reg keys by condition?

2006-11-01 Thread Anton Filippov
Hi Previous install system (NSIS) set some reg keys. I should remove it, If I'll find keys and If when my property is set. Can I do that without CA (type 1, 2, 17, 18)? Maybe through element and some conditional statements? I can't find some conditionals samples for registry. Anton. -

Re: [WiX-users] Leave some files during uninstall

2006-10-31 Thread Anton Filippov
e files (whole component) will not be removed > during uninstallation. > > > Regards > > Stefan > > Anton Filippov wrote: > > Hi All > > > > How to don't delete some files during unistall? > > > > Can I deny remove this files through standar

[WiX-users] Leave some files during uninstall

2006-10-30 Thread Anton Filippov
Hi All How to don't delete some files during unistall? Can I deny remove this files through standart way, or only through CA (creating backup)? Maybe set this files into one component and verify component (how)? Thanks. Anton.

Re: [WiX-users] "Next" button and check statements

2006-10-26 Thread Anton Filippov
When I click 'Yes' button, I publish 1 For 'Next' button I check this property. NOT EmptyInterfaces EmptyInterfaces if EmptyInterfaces property is not set - I spawn dialog, right? Then I ask, and if user click 'Yes' I publish 'EmptyInterfaces' property and exit from question dlg. And now I must c

Re: [WiX-users] "Next" button and check statements

2006-10-26 Thread Anton Filippov
On 10/27/06, Bob Arnson <[EMAIL PROTECTED]> wrote: > Anton Filippov wrote: > > I tried to publish NewDialog, but it's not work. > > > > Can you post the code for the Next button with NewDialo

[WiX-users] "Next" button and check statements

2006-10-26 Thread Anton Filippov
Hi All! I've question: In my setup sequence, user must set same data in custom action dlg. but, if user don't set this data, I ask for empty data and continue installation NOT EmptyInterfaces EmptyInterfaces // EmptyInterfacesErrDlg: 1 1 1 How to continue process, if user click

[WiX-users] Install with prevous versions

2006-10-18 Thread Anton Filippov
Hello I write installer in WiX for product. This is new installer and this product already have old versions, wrote in other installer (NSIS). I search for older versions like this: UnsinstallString contains file path for uninstall.exe for older versions, like "C:\program Files\Solver3

[WiX-users] [wix] Create only "Change|Remove" button in Add|Remove Programs

2006-10-15 Thread Anton Filippov
Hello. How to create only one button "Change|Remove" in Add|Remove, instead "Change" and "Remove"? Thanks Anton - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-int

[WiX-users] Set selection tree options

2006-10-05 Thread Anton Filippov
Hello all I've have selection tree, and I want to set installing way options for features like "Install" and "not install" only. I'm trying follow combination, but I've "install", "not install" and "network install". How to remove "network install"? (3 way) if i insert into this block another

[WiX-users] How to make smaller .msi-file?

2006-09-14 Thread Anton Filippov
Hello, all How I can make installer smaller? My all files required 4mb space on hdd, but .msi file have size of 8mb! This is... not right I think. I set compressed="yes" in -definition. Thanks, Anton. - Using Tomcat but ne

Re: [WiX-users] Need help with checkboxes

2006-09-08 Thread Anton Filippov
rver = "0" try NOT StartServer for the condition > that disables the second checkbox. It is a little counterintuitive, but if > you take a look at the MSI log, you should see that unchecking a checkbox > doesn't set the value of the property to "0", it delet

[WiX-users] Need help with checkboxes

2006-09-07 Thread Anton Filippov
Hello all. I have some checkboxes in dialog: Launch [ProductName] as service StartServer = "0" StartServer = "1" 0 When it show on dialog, I have: LaunchServer - checked LaunchserverAsService - disabled, checked When I press LaunchServer and check it again LaunchServerAsService - c