On 2/14/07, Dhaval Patel <[EMAIL PROTECTED]> wrote:
> I don't know if this issue is WIX related, or something completely random. I
> had developed an app that was deployed using "Xcopy" via a batch file.
> Recently my PM decided to port it to WIX because of my newly gained "WIX
> powers." Anyway, t
Hi Matthew,...
I have, personaly, no experience with the Visual Studio
2005 Bootstrapper but the simple bootstrapper I use (wrote) does not
have the step 6 you are writing about.
It is simply not needed because when you run the maintenance mode
with arguments REINSTALLMODE=vomus REINSTALL=ALL it w
Thanks alot,
That did the trick, however the Directory attrib expects a property id
of an existing , so no need for the []:
> Directory="INSTALLSCRIPTINSTALLDIR"
> ExeCommand='"[INSTALLSCRIPTINSTALLDIR]boo\booi.exe"
> "[INSTALLSCRIPTINSTALLDIR]install.dir.boo"
> "[WEBINSTALLDIR]."
> "[INSTALLDIR
Hi All,
I know this topic has been of much discussion and I have looked through all
of the previous mailings but am still unable to produce what I need. All I
want is a bootstrapper that is similar to InstallShield to perform minor
upgrades.
I need to:
1. Ensure prerequisites are present and if
I don't know if this issue is WIX related, or something completely random. I
had developed an app that was deployed using "Xcopy" via a batch file.
Recently my PM decided to port it to WIX because of my newly gained "WIX
powers." Anyway, this app has a bunch of .dll files and a Windows Forms app
t
Hi, I have a question about using wix to author an installer package.
I am trying to register a com interop, from all of the reading I have done I
understand that I shouldn't use AssemblyRegisterComInterop="yes" and I
shouldn't call a custom action that uses regsvr32.
So what I SHOULD do if I und
Is there a command to delete a virtual directory if it exists?
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download
ok, thanks for that...
Just in case that someone else happens to need to do the same thing:
On 2/13/07, Rob Mensching <[EMAIL PROTECTED]> wrote:
Totally agree. Can you make sure abug is open to track the issue.
From: Cullen Waters
Sent: Tuesday, February 13, 2007 10:43 AM
To: Rob Mensching; WiX-users@lists.sourceforge.net
Subject: RE: [WiX-users] ?Bug? in linker
We've found a workaround for now, so it's not a critical issue for us, but
It's not Wix as much as it is that Windows Installer property names are
case-sensitive (one of the reasons being that all uppercase means that
it's a public property).
Phil Wilson
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Andy Ness
Sent: T
Thanks Fredrik. That was I need and it works now.
From: Fredrik Grohn [mailto:[EMAIL PROTECTED]
Sent: Saturday, February 10, 2007 1:35 AM
To: Leila Lali (Excell Data Corporation); wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Error 1604
Are you using WCAUtil form your custom action? If
That actually does help, and what I have learned is that case sensitivity is
the issue here. If, on my install, I have "mydomainname=domain\account" (and
provided I make the change that Rob suggested below), I will see the command
line. But if I have it "MYDOMAINNAME=domain\account", the value
We've found a workaround for now, so it's not a critical issue for us, but
something that probably should be fixed.
From: Rob Mensching
Sent: Tuesday, February 13, 2007 10:37 AM
To: Cullen Waters; WiX-users@lists.sourceforge.net
Subject: RE: [WiX-users] ?Bug? in linker
That sounds like the bug I
That sounds like the bug I remember. Maybe it hasn't been fixed yet. I have
not been in to the WiX v3 Binder in a long time... focused on finishing WiX v2.
From: Cullen Waters
Sent: Tuesday, February 13, 2007 10:28 AM
To: Rob Mensching; WiX-users@lists.sourceforge.net
Subject: RE: [WiX-users] ?
That's not the behavior I'm seeing. I saved the wixlib files, so you can see
the paths that are in there. The wixlib and the file it references are both
built to the same directory, but the wixlib contains the path from the .wxs
source file to the binary reference. Since we build to a 'Target'
No, .wixlibs are designed to be portable. There was actually a bug a long time
ago that absolute paths were preserved in the .wixlib. Thus the .wixlibs were
looking for the server CustomAction files in the location we built them on the
build server. That's obviously bad.
What should actually
ComponentSearch element.
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Wilson, Phil
Sent: Tuesday, February 13, 2007 9:19 AM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] How to use the registry to detect if a
productisinstalled
I don't
In my application, we have several wixlibs that we use to wrap functionality
for Custom Actions. Recently, we changed the way we were building these
slightly, and it broke our build.
Previously, we were relying on a particular environment variable to be set, in
order for the build to work. Th
As I pointed out before, none of the products installed on my system
have an item called ProductVersion under the guid key.
Phil Wilson
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Harvey
Werner
Sent: Tuesday, February 13, 2007 9:42 AM
To: Rob Mensc
Yes, the package is pre-installed and the GUID is correct under the
Uninstall key.
> -Original Message-
> From: Rob Mensching [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, February 13, 2007 9:05 AM
> To: Harvey Werner; wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] How to use the
I don't know the Wix for an appsearch for a component guid, sorry.
Phil Wilson
-Original Message-
From: Harvey Werner [mailto:[EMAIL PROTECTED]
Sent: Monday, February 12, 2007 3:34 PM
To: Wilson, Phil; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] How to use the registry to
Hi Levi,
you can try this sequence with WiX 3:
http://schemas.microsoft.com/wix/2006/wi";
xmlns:difxapp="http://schemas.microsoft.com/wix/DifxAppExtension";>
...
You will also need to specify some cust
Or better yet, just use the upgrade logic in the Windows Installer... unless of
course you're trying to detect a non-Windows Installer package. In that case,
then you really should use the mechanism the previous product suggests to
detect it. If it is really to go walk around in the ARP regist
You probably can't use the standard WiX elements because those will cause your
Component to take ownership of the .sln extension (as you note, not something
you want to do). Instead, you'll probably have to write a number of targeted
registry keys.
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTEC
1. RegistrySearch is executed when the AppSearch action runs. The AppSearch
action usually is one of the very first things executed.
2. I don't think AppSearch will be able to be scheduled deferred which means
it won't work for what you are trying to do.
3. It is difficult to impossible to
Not that I'm aware of. I have been focused on finishing WiX v2 and have made
no changes to WiX v3 for a couple months basically.
From: Levi Wilson [mailto:[EMAIL PROTECTED]
Sent: Tuesday, February 13, 2007 6:22 AM
To: Rob Mensching
Cc: Quinton Tormanen; wix-users@lists.sourceforge.net
Subject: R
André Pönitz wrote:
> Can this be done from inside Wix? If so, how?
>
See DisableRollback action and DISABLEROLLBACK property in the doc.
--
sig://boB
http://bobs.org
-
Using Tomcat but need to do more? Need to support
Guillaume Girard wrote:
> I got confused by the ListBox table appearing despite the fact that
> it's empty and I can't find any EnsureTable for it in the code.
It's required if you have just about any UI because the FilesInUse table
is required and it has a required ListBox.
--
sig://boB
http
Has this issue been resolved with WiX v3 and DIFxApp?
On 1/30/07, Rob Mensching <[EMAIL PROTECTED]> wrote:
There is a bug open on WiX v3 about not quite integrating correctly with
DIFxApp.
*From:* [EMAIL PROTECTED] [mailto:
[EMAIL PROTECTED] *On Behalf Of *Levi Wilson
*Sent:* Tuesday, Janua
Bob Arnson wrote:
> [...] MSI doesn't let you configure rollback storage except to
> disable it entirely.
Can this be done from inside Wix? If so, how?
Andre'
-
Using Tomcat but need to do more? Need to support web services
Hi,
I have following scenario:
1. A deferred InstallDeviceDriver custom action installs device drivers. The
custom action checks if the driver interface has been changed? Then it
writes a volatile key in the registry, which indicates that a reboot is
necessary!
2. In WiX a property DOREBOOT, c
Hi Nick,
Try this:
Add please tell me the sequence of this custom action.
Thanks
Traits
2007/2/13, nick hemsley <[EMAIL PROTECTED]>:
I am having a problem calling an external boo script from wix.
Here is the tag
If I paste the command text from the log into a command prompt it runs
a
It is the C++ CustomAction Type 1 (CA in Dll).
I didn't mention it but I think you have realised that.
Stefan
Stefan Pavlik wrote:
> Hi Guillaume,...
>
> The MSI does not support the File browse dialog.
> You should check the CFileDialog class in MFC
> http://msdn2.microsoft.com/en-us/dk77e5e7(
Hi Guillaume,...
The MSI does not support the File browse dialog.
You should check the CFileDialog class in MFC
http://msdn2.microsoft.com/en-us/dk77e5e7(VS.80).aspx
Here is a snippet of the code I was using for the same purpose:
extern "C" UINT __stdcall CAOpenFileDialog(MSIHANDLE hInstall)
{
I am having a problem calling an external boo script from wix.
Here is the tag
If I paste the command text from the log into a command prompt it runs
as expecte. The ExeCommand is quoted using single quotes (as I *think*
i need to use double quotes for paths, i havent tested this though).
Here
Hi,
I can't find any support in Wix (or rather, in MSI) for building a file
chooser dialog. In particular, I'm missing a file list control. Am I
just being confused?
If this is indeed not supported by Wix/MSI, how would you go building
one? I thought of having a custom action filling in a list
You can use multiple cabs by specifying multiple Media tags, each one having a
different ID. You
can then put files in whichever cab by setting [EMAIL PROTECTED] to the
relevant id number. I think you
can also set [EMAIL PROTECTED], but I'm not sure off the top of my head.
Rob
Magus wrote:
Bob Arnson wrote:
> Guillaume Girard wrote:
>> Unfortunately, the ListView table is not created in the final MSI
>> file. Shouldn't it be?
>>
>
> WiX doesn't create tables unless they're needed. You can use the
> EnsureTable element to make sure an empty table is created.
>
It makes sense,
38 matches
Mail list logo