[WiX-users] Новинка!

2008-05-07 Thread archie udo
Информационные базы данных ГАИ Москвы, М О и Р Ф (авто, владельцы, вод/уд, ДТП, ПДД, розыск) по 2007 г. 2 000 руб.Физические лица Москвы и М О по 2007 г. (телефоны, прописка, собственность) 2 000 р.Юридические лица и предприятия Москвы и Р Ф по 2007 г. (сведения о юридическом

Re: [WiX-users] is it valid to reference a binary file id using a public property value?

2008-05-07 Thread Kalle Olavi Niemitalo
Robert O'Brien <[EMAIL PROTECTED]> writes: > is it valid to reference a binary file id using a public property value? > > e.g. if I have the following public property and binary files defined > > > SourceFile="$(var.SolutionDir)Configuration\MyService.exe.dvt.config" /> > SourceFile="$(var.Solu

[WiX-users] How to do msi by some difficult requests?

2008-05-07 Thread leon wang
1> We want to detect one software and version, and read it's installation folder path from registry[I know wix can do this], when get it's path then install file to this path. How to deal this? 2> Does WIX can detect application instance in memery? If can detect this could we stop install? Automati

[WiX-users] [6]:

2008-05-07 Thread ban arif
Продается участок 14 соток, Ярославское ш. 35км от МКАД, ИЖС. Участок правильной формы, ровный, без построек. Вид на реку Воря, лес. Свет, вода по границе, газ 2008г. Прекрасное место для круглогодичного проживания. Прямая электричка с Ярославского вокзала. Чистый живописный район. Тел. 8-903-27

Re: [WiX-users] Compilation problem

2008-05-07 Thread shiri
Thanks I got the solution. regards, A.Srinivas Scott Sam-2 wrote: > > Did you define a culture in the project properties window? > > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of shiri > Sent: Wednesday, May 07, 2008 9:09 AM > To: wix-users@l

[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 mach

Re: [WiX-users] RESEND: Condition on Feature

2008-05-07 Thread Christopher Karper
Are you rerunning a cached version? If you're trying to remove or repair from ARP, then you would see whatever the original installer had on offer, right? Chris On Wed, May 7, 2008 at 2:36 PM, Srinivas Tirupati <[EMAIL PROTECTED]> wrote: > Resending as didn't get any replies L > > > > *From:*

Re: [WiX-users] Signing built MSIs?

2008-05-07 Thread Neil Enns
Ok, for the record and for anyone else who might search for this in the archives, here's how I wired this into wix.targets. Note that you could also just put this directly in your project file, with the SignInstaller target renamed to AfterBuild. With the below changes you add these two properti

Re: [WiX-users] Beating a dead horse: uninstalling anInstallScript setup during a wix upgrade?

2008-05-07 Thread dB.
This works for MSI-based ones. /clone_wait did the trick. Now I need to figure out the rest ... Thx. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Wilson, Phil Sent: Wednesday, May 07, 2008 5:59 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Beating a dead hors

Re: [WiX-users] Beating a dead horse: uninstalling an InstallScript setup during a wix upgrade?

2008-05-07 Thread Christopher Painter
You may also want to consider writing a custom utility to uninstall the old InstallScript install. Usually this involves snapshoting the application on a clean machine to understand what it's footprint was and then writing code back it out while respecting things like shared files and dll refe

Re: [WiX-users] Signing built MSIs?

2008-05-07 Thread Neil Enns
SignFile can only sign exes, unfortunately (unless this changed in MSBuild 3.5). I'm not asking for wix to add a new option, I'm asking for the wix build process to add support for signing to the wix.targets file. In my .wixproj file I want to be able to add a property called or something like

Re: [WiX-users] Signing built MSIs?

2008-05-07 Thread John Vottero
MSBuild does come with a signing task, it's the SignFile task. You can sign your msi files with signtool.exe, MSBuild or PowerShell's Set-AuthenticodeSignature. I don't know why WiX should add another option. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rob Mensching Sen

Re: [WiX-users] Beating a dead horse: uninstalling an InstallScript setup during a wix upgrade?

2008-05-07 Thread Wilson, Phil
I think /SMS is the incantation that makes the process wait for completion. It's case-sensitive I believe. Phil Wilson From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of dB. Sent: Wednesday, May 07, 2008 2:44 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Beating a dead

Re: [WiX-users] Allow installer to install over itself

2008-05-07 Thread Colin Bleckner
Yeah you're right, updating the build number is probably a good idea. Does WiX support a way to update build numbers automatically? I'd like to make building my installer as idiot proof as possible so that there are fewer ways I can accidentally screw things up the future. Having to remember

Re: [WiX-users] Signing built MSIs?

2008-05-07 Thread Neil Enns
I'm not suggesting that the compiler or linker handle this at all. Just interested in it being baked into the targets so if a key file is specified that the output MSI is signed at the end of the build process. I agree that WiX should not be in the business of signing each of the individual item

[WiX-users] Beating a dead horse: uninstalling an InstallScript setup during a wix upgrade?

2008-05-07 Thread dB.
I have to upgrade an installscript installation (non-MSI) with a new wix installer. I figured out how to get the uninstall command (registry, HKLM/.../Uninstall/GUID/UninstallString) and I can run that as a custom action, but... 1. I can't make the damn thing wait to finish, it detac

Re: [WiX-users] Signing built MSIs?

2008-05-07 Thread Rob Mensching
Write a task that signs files? Seriously, some people have suggested that WiX should sign files. I'm a little skeptical because it doesn't seem like something the compiler/linker should be doing. Others have noted that signing is done by csc.exe to create strong named assemblies. I've argu

Re: [WiX-users] Wix 3.0 Event log read write permissions

2008-05-07 Thread Apoorv Shrivastava
Thanks for the advice. Setup works now. Apoorv On Tue, May 6, 2008 at 9:38 PM, Kevin Richardson <[EMAIL PROTECTED]> wrote: > You'll want to use instead. Include > WixUtilExtension.dll with and use: > > User="NetworkService"/> > > This will append the permissions rather than replacing them. > >

[WiX-users] Signing built MSIs?

2008-05-07 Thread Neil Enns
Does WiX 3.0 currently have any support for signing the generated MSI at the end of the build process? I took a quick peek at the wix.targets file and didn't see anything obvious. Is there a recommended way of doing this? Thanks, Neil

Re: [WiX-users] Problems with module dependency

2008-05-07 Thread Rob Mensching
The install error message doesn't mean much to me (more context might help) but the lack of ModuleDependency check is known. In WiX v3 we solved that problem by having light run validation at the end of the build. Unfortunately, in WiX v2 you have to run validation yourself to get the error ab

[WiX-users] Wix Queries

2008-05-07 Thread Ashwani Verma
Hi All, I am not sure if this is the right alias to contact for any WIX related queries. If not, kindly forward it to the right alias. I am relatively new to WIX and am currently facing two issues: 1. We have a requirement to display all the websites present on local IIS in a drop down.

[WiX-users] RESEND: Condition on Feature

2008-05-07 Thread Srinivas Tirupati
Resending as didn't get any replies :( From: Srinivas Tirupati Sent: 06 May 2008 21:48 To: 'wix-users@lists.sourceforge.net' Subject: Condition on Feature I have a feature in my product which needs to be installed only if VS 2005 is present. I have done this by adding a condition element to Feat

[WiX-users] Problems with module dependency

2008-05-07 Thread Jared Prestwich
Using WiX version 2. I had a product and merge module working together OK, then decided I needed the merge module to depend on another merge module (I originally added the contents of Test1 by having it be a Fragment and referencing one of it's CustomActions in Test2). This all compiles fine but w

Re: [WiX-users] Compilation problem

2008-05-07 Thread Scott Sam
Did you define a culture in the project properties window? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of shiri Sent: Wednesday, May 07, 2008 9:09 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Compilation problem Hi, Thanks for your

Re: [WiX-users] Compilation problem

2008-05-07 Thread shiri
Hi, Thanks for your reply.I added the reference , if I add the reference it is giving many errors as folows Error 2 The localization variable !(loc.WixUIYes) is unknown. Please ensure the variable is defined. C:\delivery\Dev\wix\src\ext\uiextension\wixlib\ErrorDlg.wxs 10 1

Re: [WiX-users] Compilation problem

2008-05-07 Thread Willie Burton
Did you add the WixUiExtension.dll reference to your project? *Project --> Add Reference --> Browse Tab --> WixUiExtension.dll --> Add --> OK Is there a somewhere? *Place it as a child element of Product -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

[WiX-users] Compilation problem

2008-05-07 Thread shiri
Hi , I want to include dialog sequence for my installation.I used UIRef tab with WixUI_Mondo when I build it from visual studio environment It is giving the error as follows. Error 1 Unresolved reference to symbol 'WixUI:WixUI_Mondo' in section 'Product:{DCD02D53-BB01-4AA0-B3F0-74F399496

[WiX-users] Олег Меньшиков в новой премьер е 1900-Й!

2008-05-07 Thread Афиша Москвы
ЛУЧШЕЕ-ТЕАТРЫ МОСКВЫ /Ч95/ 229 3 500 - ДОСТАВКА БИЛЕТОВ 1900-Й - НОВАЯ ПРЕМЬЕРА - В ГЛАВНОЙ РОЛИ ОЛЕГ МЕНЬШИКОВ -15 И 16 МАЯ НОВАЯ ПРЕМЬЕРА! - ШОУ ДЛЯ ТЕАТРА - КОМИЧЕСКИЙ ТЕАТР КВАРТЕТ И - 3,4 И 23, 24 ИЮНЯ

Re: [WiX-users] MSBuild with multiple localizations

2008-05-07 Thread RAYMENT Tim
Hi Kevin, We use a .wixproj to manage the files in the VS IDE and then have a separate MSBuild script to manage building of our multi-language installers. We start by finding all WiX files We have an ItemGroup of languages defined: zh-TW 1028 TW