A verbose log file should tell all.
On Tue, Mar 19, 2013 at 2:34 PM, Phil Wilson wrote:
> The file paths may be in the SharedDlls registry entries,
> HKLM\Software\Microsoft\CurrentVersion\SharedDlls.
>
> If you ever marked them shared or permanent and installed them, then they
> are stuck on t
Unfortunately, no. The MSI can only have one codepage, although a transform
can change the codepage.
On Tue, Mar 19, 2013 at 12:46 PM, Uma Harano wrote:
> Hi,
> I have been asked to create a setup msi that has the workflow explained
> below:
>
> The setup will install the help resources for 14
It is entirely possible the COM+ CustomAction has not been updated to
handle NETFX 4.0. I don't even know if that statement makes sense but the
custom action was written so long ago, there may be something about NETFX
4.0 that isn't handled correctly. Someone could look at the code...
On Tue, Mar
The file paths may be in the SharedDlls registry entries,
HKLM\Software\Microsoft\CurrentVersion\SharedDlls.
If you ever marked them shared or permanent and installed them, then they
are stuck on the system. Changing the guid won't help if they're permanently
on the system under another guid, or
Does the .NET 4.0 component install to COM+ ok if you do it manually?
-Original Message-
From: DexterSinister [mailto:dma...@nt4hire.com]
Sent: 19 March 2013 20:34
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] COM+ registration help
Hi Rob -
Your 'nothing' is probably mor
Hi Rob -
Your 'nothing' is probably more than my nothing on this topic, so thanks in
advance for any assistance and insight you can provide.
Here's the relevant log segment:
**
ComPlusInstallExecuteCommit: Entering ComPlusInstallExecuteCommit in
C:\WINDOWS\Installer\MSI29.tmp, version 3
This does not seem to happen with Wix 3.6 only 3.7
Thank you,
-Original Message-
From: Rob Mensching [mailto:r...@robmensching.com]
Sent: Tuesday, March 19, 2013 3:13 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Bundle install on Windows XP 32-b
Thought of that, I created new GUID for those components and tried the install
again.
Still an issue on Windows XP
WIX 3.6 and 3.7
Thank you,
Michael Ogilvie
Application Support Specialist | PixeLINK
1900 City Park Drive, Suite 410.
Ottawa, Ontario K1J 1A3
tel: 613.247.1211 Ext. 242 | cell:
Are unique Guids set for each installed file, particularly the ones that aren't
being uninstalled?
That might not explain why it works on one OS and not another though.
Alain
-Original Message-
From: Michael Ogilvie [mailto:michael.ogil...@pixelink.com]
Sent: March 19, 2013 16:17
To:
I remove all files then do a fresh clean install of the bundle and then
a uninstall of the bundle and some of the files are left.
This only happens on Windows XP, Windows 8 cleans up everything
Thank you,
Michael Ogilvie
-Original Message-
From: Alain Forget [mailto:afor...@cmu.edu]
S
Hi,
I have been asked to create a setup msi that has the workflow explained below:
The setup will install the help resources for 14 languages (without using msts,
just one msi file). One of the dialogs in the setup will ask the user to select
a language in a drop down list box. If the user selec
Many reasons, one of which is because they were created by the application as
it was running on the client machine, and weren't a
part of the original installation package.
We'd need more details to help much more.
Alain
-Original Message-
From: Michael Ogilvie [mailto:michael.ogil...@p
Why would some files be left after the uninstall??
Thank you,
Michael Ogilvie
Application Support Specialist | PixeLINK
1900 City Park Drive, Suite 410.
Ottawa, Ontario K1J 1A3
tel: 613.247.1211 Ext. 242 | cell: 613.302.9844 | fax: 613.247.2001 |
skype: pixelink.mogilvie
w
Nothing interesting in the logs.
Bundle1:
[0FBC:0498][2013-03-19T16:18:37]i001: Burn v3.7.1224.0, Windows v5.1 (Build
2600: Service Pack 3), path: C:\Documents and
Settings\mogilvie\Desktop\Camera_Kit.exe, cmdline: ''
[0FBC:0498][2013-03-19T16:18:37]i000: Initializing string variable
'InstallFo
What does the log file show?
On Tue, Mar 19, 2013 at 11:49 AM, Michael Ogilvie <
michael.ogil...@pixelink.com> wrote:
> When I run my exe install on a Windows XP machine the bundle will launch
> itself after the install.
>
>
>
> So when the install completes I have two windows, one says close an
When I run my exe install on a Windows XP machine the bundle will launch
itself after the install.
So when the install completes I have two windows, one says close and the
other has "repair", uninstall" and "close"
This does not happen on Vista, Win7 or 8
Thank you,
Michael Ogilvie
Okay, works as expected, sorry.
It was picking the same path for two referenced projects with different names.
Which I still believe should duplicate the properties anyway...
Jan
-Original Message-
From: Jan Kucera [mailto:t-j...@microsoft.com]
Sent: 19 March 2013 17:10
To: General disc
What about the log search results previously referred to? For completeness:
1) The component and features state for components installing patched files
should say something about whether they are to be installed. Examples:
MSI (s) (80:58) [16:44:49:982]: Feature: Setup; Installed: Local; Reques
Take a look at the build command-line. IIRC, the "." is changed to "_".
On Tue, Mar 19, 2013 at 10:10 AM, Jan Kucera wrote:
> Hi, if the referenced project has a dot in its name, how can I reference
> its properties in the Wix files?
>
> Like $(var.My.Project.TargetDir) for My.Project reference
Hi, if the referenced project has a dot in its name, how can I reference its
properties in the Wix files?
Like $(var.My.Project.TargetDir) for My.Project reference...
Thanks!
Jan
--
Everyone hates slow websites. So do w
You want:
Session.Property("PREVIOUS_PATH") = pathToProcess
But honestly, Script Custom Actions are very fragile. Consider C++ or C#
instead.
From: "Vladimir Yelnikov"
Sent: Tuesday, March 19, 2013 10:05 AM
To: wix-users@lists.sourceforge.net
Subject:
This works for me, but I'm not doing any VBScript.
...
Alain
-Original Message-
From: Vladimir Yelnikov [mailto:vladimir.yelni...@gmail.com]
Sent: March 19, 2013 10:59
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Modify Public property from VBScript CustomAction
Hi everyone.
I try to modify public property from VBScript CustomAction but without any
success:
I tried Session["PREVIOUS_PATH"] = pathToProcess but it didn't work.
Is it possible to modify property values from script custom action?
The real problem is legacy application saves pathe
On 19/03/2013 12:31, Bruce Cran wrote:
> Clone https://hg.codeplex.com/wix :
>
> hg clone https://hg.codeplex.com/wix -b wix38
Sorry ignore most of that - those instructions are for WiX 3.8 not 3.6.
To get 3.6 you just need to use "-b wix36" when cloning and follow the
instructions in the docum
On 13/03/2013 20:13, jeamis wrote:
> So how do I enlist to the Mercurial repository? All I want to do is
> compile burn. I want to confirm our static analysis and debugging.
>
> Any direction is appreciated.
Clone https://hg.codeplex.com/wix :
hg clone https://hg.codeplex.com/wix -b wix38
To
Hi,
i tried to build an installer using the mondo dialogs. When I start the
installer the directory browse button is always disabled. I tried diferent
things but I cannot enable it. could anybody tell me about the dependency? Here
is my wxs source:
http://schemas.microsoft.com/wix/2006/wi";
Still having the same problem.
Tried different stuff:
Changing the AssemblyFileVersion of my compiled assemblies - didn't help.
Not adding new files in the patch - didn’t help.
Raising the PatchFamily Version attribute between patches - I'm not sure, in
consistent...
Removing the Supersede='yes' -
Hi,
Am trying to add reference to WixUIExtension.dll from VS 2008
I have attached the error screen shot.
Kindly let me know how to proceed further
Thanks and Regards
Ravi
--
Everyone hates slow websites. So do we.
Make y
28 matches
Mail list logo