[WiX-users] (no subject)

2008-04-14 Thread 钟文辉
各位老总:您们好! 诚祝:您们在2008年里;有鼠不尽的快乐!鼠不尽的收获!鼠不尽的钞票!   鼠不尽的幸福!鼠不尽的美满生活!愿: 您们阖家欢乐!幸福安康! 我是(深圳市珊湖岛进出口有限公司)的负责人;可以提供:出口报关单,   核销单等等一系列手续;代理:出口报关,商检,境内外运输..等等;还可 以代办:出口欧盟许可证,欧盟产地证;并且还有(广州国际贸易交易会)的摊 位可以转让;有意者请

[WiX-users] Модель компетенций: разработка и применение

2008-04-14 Thread Светлана Измайлова
Приглашаем на семинар-практикум: ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ "Модель компетенций: разработка и практическое применение" ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ Информация и запись по тел.: (495) 925 ~ 88~ 7I Менеджер: Светлана Измайлова . . . . . . . Компетенции сегодня являются одним из ключевых инструментов упр

[WiX-users] Пластиковые урны

2008-04-14 Thread Григорий
Мусорные пластиковые котейнеры. Каталог и розничные цены на сайте: www.imgd.ru/cont/ Оптимально для дома, офиса, дачи, промышленности. У нас заказывает даже Анастасия из города Кесова Гора. - This SF.net email is sponsored by

[WiX-users] Passing a property to product removal in RemoveExistingProducts

2008-04-14 Thread Simon Detheridge
Hi, I have a wix-based installer in which I want to do a major upgrade. I have an old version of the product that has a custom action that fires during uninstall, unless a property is specified. i.e. If I just uninstall my application, the action fires, but if I 'msiexec /X'{MYGUID-...} DON

Re: [WiX-users] Passing a property to product removal in RemoveExistingProducts

2008-04-14 Thread Rob Hamflett
If a product uninstall is happening because of a major upgrade, I believe the property UPGRADINGPRODUCTCODE is set. You could use this to condition your custom action. Rob Simon Detheridge wrote: > Hi, > > I have a wix-based installer in which I want to do a major upgrade. > > I have an old

Re: [WiX-users] Passing a property to product removal in RemoveExistingProducts

2008-04-14 Thread Simon Detheridge
I wrote: >> Hi, >> >> I have a wix-based installer in which I want to do a major upgrade. >> >> I have an old version of the product that has a custom action that >> fires during uninstall, unless a property is specified. i.e. If I just >> uninstall my application, the action fires, but if I 'msiex

[WiX-users] Посмотри обязательно!!!

2008-04-14 Thread farleigh harvey
БИЛЕТЫ НА ЛУЧШИЕ СПЕКТАКЛИ ПРЕМЬЕРЫ КОНЦЕРТЫ 2 2 9 3 5 0 0 СЛИШКОМ ЖЕНАТЫЙ ТАКСИСТ ( ТЕАТР

[WiX-users] Elevation Shield in Updates?

2008-04-14 Thread Albert Shamsiyan
Any idea why the Update shall pup up non signed style elevation UAC dialog? Both the original and the update package are signed and non (as long as I can think of) of the Msi rolls between packages were broken. Only clue can be found in the log say: "MSI_LUA: Recache/Reinstall of a product that

[WiX-users] Can someone please share a verify credentials / SE_TCB_PRIVILEGE custom action code?

2008-04-14 Thread dB.
Can someone please share some C++ custom action code that verifies user credentials and whether the user has SE_TCB_PRIVILEGE for installing a service, before I have to write it? If you have wix hook-up to a UI I'd love to see that too. Appreciated, dB. -dB. dblock.org

Re: [WiX-users] Update Problems with versioned files (oxc)

2008-04-14 Thread Michael Musenbrock
Michael Musenbrock schrieb: > ... if the file has changed in the update, but the internal > version number of this file hasn't been updated, it is ignored, > is there a way to preserve this and get msi to updated my files? > For everybody else who runs in this problem, try to change the default

[WiX-users] condition statements checking for valid .net framework 2.0 and 3.5 installs appear to not be getting evaluated

2008-04-14 Thread Robert O'Brien
My condition statements checking for valid .net framework 2.0 and 3.5 installs appear to not be getting evaluated. Looking at the log files for an msi with the following property value assignment and condition checks I see the expected values, e.g. Property(S): NFX20VERSION = 2.1.21022 Propert

[WiX-users] Angle brackets as property value

2008-04-14 Thread Roger Yen
Hi, I got a REALLY short question, is there any way to assign angle brackets as property/string values? Thanks, Roger Yen - This transmission (including any attachments) may contain confidential information, privileged m

Re: [WiX-users] Angle brackets as property value

2008-04-14 Thread Jordan Fitzgibbon
You can do it in the inner text of a Property element as CDATA, eg: Angle Brackets: From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Roger Yen Sent: Monday, April 14, 2008 1:32 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Angle brackets as property value Hi, I

Re: [WiX-users] using for %i processing commands in custom actions

2008-04-14 Thread Robert O'Brien
I'm using the latest wix drop. I tried double escaping the for loop parameter, i.e. %%i, and didn't get it working either. Typically the %%i format is only required if the for loop is executing from within a batch script. Based on recommendations in the previous response to this thread I swit

[WiX-users] MSI CustomAction - PowerShell

2008-04-14 Thread Dale Quigg
Hi, I have a Type 51 QtExecCmdLine CustomAction with a Target of (all one line) "PowerShell.exe" -NoLogo -Noninteractive -Command "& { $fn='[MG_ROOT]MG_CONFIG' ; if (Test-Path $fn) {$fn_orig='$fn' + '.orig'; Copy-Item $fn $fn_orig; cat $fn_orig | % { $_ -replace '^local.*','local_ip_address=[MG_I

[WiX-users] Only start install if specific application isn't running?

2008-04-14 Thread Colin Bleckner
Hi, I'd like my installer to display an error if a user tries to start an installation while a certain application is running (like Internet Explorer, for example). Is it possible to detect whether an application or process is running with WiX and build a condition from it? Thanks, Colin ---

Re: [WiX-users] Only start install if specific application isn't running?

2008-04-14 Thread Rob Mensching
CloseApps CustomAction gives you just about everything you need. You'll need to tweak it a bit to get a Property set. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Colin Bleckner Sent: Monday, April 14, 2008 19:22 To: wix-users@lists.sourceforge.net Su

Re: [WiX-users] Installing many files with wildcard

2008-04-14 Thread Bob Arnson
Siva Poobalasingam wrote: > i am having this same problem... > And my advice remains the same. Windows Installer requires explicit resource management. That's why WiX has tools like Tallow and Heat. -- sig://boB http://joyofsetup.com/ -

Re: [WiX-users] Passing a property to product removal in RemoveExistingProducts

2008-04-14 Thread Bob Arnson
Simon Detheridge wrote: > We want the new installer to be able to uninstall the old version > without calling the custom action, and we know the property we need to > set to do this is, but we can't change how the existing installer > works as it's already on user's machines. > You need t

Re: [WiX-users] Only start install if specific application isn't running?

2008-04-14 Thread Bob Arnson
Rob Mensching wrote: > CloseApps CustomAction gives you just about everything you need. You'll need > to tweak it a bit to get a Property set. > Only if you consider the use of the Property attribute to be "tweaking." The CloseApplication element already lets you specify a property to be se

Re: [WiX-users] Update Problems with versioned files (oxc)

2008-04-14 Thread Bob Arnson
Michael Musenbrock wrote: > For everybody else who runs in this problem, try to change the default > REINSTALLMODE property [1] to "emus" (default is "omus"). So > also files with equal version numbers gets updated. > That will also allow "downgrades," so be careful. -- sig://boB http://joyof

Re: [WiX-users] The Visual Studio 2005 BootStrapper - almost there?

2008-04-14 Thread Bob Arnson
dB. wrote: I meant that a user on a 32-bit Windows should see the pre-requisites required for his 32-bit windows, and on 64-bit the ones that apply. You could generalize this to various operating systems -- lets say I have Vista that requires update KB12345, so the pre-requisites should list