Re: [WiX-users] Problem in Major upgrade

2012-11-08 Thread Chaitanya
Iam using wix 3.5

-Original Message-
From: Chris Lord [mailto:chris.l...@atterotech.com] 
Sent: 07 November 2012 20:41
To: wix-users
Subject: Re: [WiX-users] Problem in Major upgrade

Chaitanya

What version of Wix are you using?

Chris 

-Original Message-
From: Chaitanya [mailto:chaita...@pointcross.com]
Sent: Wednesday, November 07, 2012 4:43 AM
To: WiX-users@lists.sourceforge.net
Subject: [WiX-users] Problem in Major upgrade

Hi,

Iam trying to do major upgrade.

Its doing action but in my control panel it is showing two entries don't
want two entries.

Here is my upgrade code.

Upgrade Id=5CFFD7A1-03B9-4B07-87C0-9B84555CC15D

  UpgradeVersion Minimum=1.0.0.0 IncludeMinimum=no 
OnlyDetect=yes
Property=NEWPRODUCTFOUND Language=1033 /

  UpgradeVersion Minimum=1.0.0.0 IncludeMinimum=yes
Maximum=2.0.0.0 IncludeMaximum=no Property=UPGRADEFOUND
Language=1033 /

/Upgrade

CustomAction Id=PreventDowngrading Error=Newer Version Already
Installed /

InstallExecuteSequence

  Custom Action=PreventDowngrading
After=FindRelatedProductsnewProductFound/Custom

  RemoveExistingProducts
After=InstallFinalize/RemoveExistingProducts

/InstallExecuteSequence

Iam changing the product code and maintaining upgrade code same. Through
command line msiexec /I {.msi} ALLUSERS=1

Please help  me where im doing wrong.

Thanks,

Chaitanya.


--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues Automate,
monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users




--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues Automate,
monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Set package name dynamically

2012-11-08 Thread kmrezwan
Hi. 

I know it's a old thread, but in case if anyone can help. 

I'm having the exact same issue, and I can't seem to update the ARP name
using the Custom Action in InstallExecuteSequence. Do I have to put in some
specific order ( before or after something else ? I tried
Before=ValidateProductID based on some other article on the web, but
didn't work !) 

My msi is able to update the ProductName in the
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{guid}\DisplayName. 
But, in ARP it still shows the old name. 

If I try to manually modify the
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Installer\Products\id\ProductName, and
refresh the arp list, i can immediately see the updated name. 

Can you suggest how to do it in InstallExecuteSequence properly?



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Set-package-name-dynamically-tp5197474p7581814.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Problem in Major upgrade

2012-11-08 Thread Chaitanya
I checked with that. That is updating version no:1.0.1.0 to higher. But not
my base version(1.0.0.0) some attribute iam missing. But I don't know where
iam missing.my base version is:
Product Id=af46a930-9939-43d1-bda6-ab283773c2a6 Name=majorupgrade
Language=1033 Version=1.0.1.0 Manufacturer=majorupgrade
UpgradeCode=7012e5f6-d76d-4c64-812e-8c204e0ae229
Package InstallerVersion=200 Compressed=yes
Id=880CE19F-1464-418E-B2CD-6BFA528E7BE3/
Property Id=WIXUI_INSTALLDIR Value=ProgramFilesFolder /
UIRef Id=WixUI_InstallDir /
Media Id=1 Cabinet=media1.cab EmbedCab=yes /
Copying 3 files.

My upgrade version is:
Product Id=76788E05-7D70-46A2-A511-F4D97A2B605D Name=majorupgrade
Language=1033 Version=1.0.2.0 Manufacturer=majorupgrade
UpgradeCode=7012e5f6-d76d-4c64-812e-8c204e0ae229
Package InstallerVersion=200 Compressed=yes
Id=5120D872-7ED7-4EBA-9A3C-096723286548 /
   
Media Id=1 Cabinet=media1.cab EmbedCab=yes /
Upgrade Id=7012e5f6-d76d-4c64-812e-8c204e0ae229
  UpgradeVersion Minimum=1.0.0.0 IncludeMinimum=no OnlyDetect=no
Property=NEWERVERSIONDETECTED Language=1033 /
  UpgradeVersion Minimum=1.0.0.0 IncludeMinimum=yes
Maximum=3.0.0.0 IncludeMaximum=no OnlyDetect=no
Property=OLDERVERSIONUPGRADED Language=1033 /
/Upgrade
InstallExecuteSequence
  Custom Action=PreventDowngrading
After=FindRelatedProductsnewProductFound/Custom
  RemoveExistingProducts
Before=InstallInitialize/RemoveExistingProducts
/InstallExecuteSequence
CustomAction Id=PreventDowngrading Error=Newer Version Already
Installed /
Help me ASAP..

-Original Message-
From: Chad Petersen [mailto:chad.peter...@harlandfs.com] 
Sent: 07 November 2012 23:19
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Problem in Major upgrade

A person does need to use OnlyDetect=no to have a product removed. With it
set to yes it will only detect that it is there, but not remove it.

It's at least one thing to try.

-Original Message-
From: Chaitanya [mailto:chaita...@pointcross.com]
Sent: Wednesday, November 07, 2012 1:43 AM
To: WiX-users@lists.sourceforge.net
Subject: [WiX-users] Problem in Major upgrade

Hi,

Iam trying to do major upgrade.

Its doing action but in my control panel it is showing two entries don't
want two entries.

Here is my upgrade code.

Upgrade Id=5CFFD7A1-03B9-4B07-87C0-9B84555CC15D

  UpgradeVersion Minimum=1.0.0.0 IncludeMinimum=no OnlyDetect=yes
Property=NEWPRODUCTFOUND Language=1033 /

  UpgradeVersion Minimum=1.0.0.0 IncludeMinimum=yes
Maximum=2.0.0.0 IncludeMaximum=no Property=UPGRADEFOUND
Language=1033 /

/Upgrade

CustomAction Id=PreventDowngrading Error=Newer Version Already
Installed /

InstallExecuteSequence

  Custom Action=PreventDowngrading
After=FindRelatedProductsnewProductFound/Custom

  RemoveExistingProducts
After=InstallFinalize/RemoveExistingProducts

/InstallExecuteSequence

Iam changing the product code and maintaining upgrade code same. Through
command line msiexec /I {.msi} ALLUSERS=1

Please help  me where im doing wrong.

Thanks,

Chaitanya.


--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues Automate,
monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users




--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues Automate,
monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Can't delete Desktop shortcut due to Warning 1910

2012-11-08 Thread tetelee
I had the same problem with perMachine installation. Others also had it. See
this link:
Warning deleting shortcuts in Windows 8
http://social.msdn.microsoft.com/Forums/en-US/winformssetup/thread/09f72e05-f43f-4e7e-81b6-f81c1b60dc6c?prof=required
  
My problem is almost the same as the link: not all computers had this
problem and it is one Windows 8. Can't find a solution or a cause



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Can-t-delete-Desktop-shortcut-due-to-Warning-1910-tp7581740p7581816.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Problem in Major upgrade

2012-11-08 Thread Chris Lord
Chaitanya

Are both the original and the update installtion the same type?  If one 
is per-user and the other is per-machine then the upgrade wont work.  
You could also run the Upgrade with verbose logging enabled.  The log 
will tell you why it didnt remove the older version.

Also, give the version you use, I'd go with what Neil suggested and 
investigate and use the MajorUpgrade element instead.  It tidies 
things up a lot.

Chris


-Original Message-
From: Chaitanya [mailto:chaita...@pointcross.com] 
Sent: Thursday, November 08, 2012 5:18 AM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] Problem in Major upgrade

Iam using wix 3.5

-Original Message-
From: Chris Lord [mailto:chris.l...@atterotech.com]
Sent: 07 November 2012 20:41
To: wix-users
Subject: Re: [WiX-users] Problem in Major upgrade

Chaitanya

What version of Wix are you using?

Chris 

-Original Message-
From: Chaitanya [mailto:chaita...@pointcross.com]
Sent: Wednesday, November 07, 2012 4:43 AM
To: WiX-users@lists.sourceforge.net
Subject: [WiX-users] Problem in Major upgrade

Hi,

Iam trying to do major upgrade.

Its doing action but in my control panel it is showing two entries don't 
want two entries.

Here is my upgrade code.

Upgrade Id=5CFFD7A1-03B9-4B07-87C0-9B84555CC15D

  UpgradeVersion Minimum=1.0.0.0 IncludeMinimum=no 
OnlyDetect=yes
Property=NEWPRODUCTFOUND Language=1033 /

  UpgradeVersion Minimum=1.0.0.0 IncludeMinimum=yes
Maximum=2.0.0.0 IncludeMaximum=no Property=UPGRADEFOUND
Language=1033 /

/Upgrade

CustomAction Id=PreventDowngrading Error=Newer Version Already 
Installed /

InstallExecuteSequence

  Custom Action=PreventDowngrading
After=FindRelatedProductsnewProductFound/Custom

  RemoveExistingProducts
After=InstallFinalize/RemoveExistingProducts

/InstallExecuteSequence

Iam changing the product code and maintaining upgrade code same. Through 
command line msiexec /I {.msi} ALLUSERS=1

Please help  me where im doing wrong.

Thanks,

Chaitanya.


--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center 
Diagnose problems and improve visibility into emerging IT issues 
Automate, monitor and manage. Do more in less time with Central 
http://p.sf.net/sfu/logmein12331_d2d
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users





--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center 
Diagnose problems and improve visibility into emerging IT issues 
Automate, monitor and manage. Do more in less time with Central 
http://p.sf.net/sfu/logmein12331_d2d
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for 
free today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] stop bootstrapper creating ARP registry key...

2012-11-08 Thread Steven Ogilvie
What is with these dependencies?

[12F0:11DC][2012-11-08T10:01:52]: Detected package: MainInstall, state: 
Present, cached: Complete
[12F0:11DC][2012-11-08T10:01:52]: Detect complete, result: 0x0
[12F0:11DC][2012-11-08T10:01:55]: Plan 14 packages, action: Uninstall
[12F0:11DC][2012-11-08T10:01:55]: Will not uninstall package: MainInstall, 
found dependents: 18
[12F0:11DC][2012-11-08T10:01:55]: Found dependent: 
{08547f31-cf5e-43b0-940c-592676af0bc3}, name: TITUS Admin Console
[12F0:11DC][2012-11-08T10:01:55]: Found dependent: 
{0dd6410d-cf1b-44c6-bbcd-8e4b965d5a33}, name: TITUS Admin Console
[12F0:11DC][2012-11-08T10:01:55]: Found dependent: 
{2d2c240b-5d50-4cbe-a49d-40e804f80715}, name: TITUS Admin Console
[12F0:11DC][2012-11-08T10:01:55]: Found dependent: 
{3b7589d4-c114-4a66-8853-e694735ae93a}, name: TITUS Admin Console
[12F0:11DC][2012-11-08T10:01:55]: Found dependent: 
{472eee75-7f79-410a-99c8-716b20414f7a}, name: TITUS Admin Console
[12F0:11DC][2012-11-08T10:01:55]: Found dependent: 
{4e46028c-ca55-438b-8e6d-f35bebe5bb4e}, name: TITUS Admin Console
[12F0:11DC][2012-11-08T10:01:55]: Found dependent: 
{9a5e4b04-01f0-4435-96a3-32dacb3fd968}, name: TITUS Admin Console
[12F0:11DC][2012-11-08T10:01:55]: Found dependent: 
{a8e47728-d337-4c66-9acf-dd02a2dbac6e}, name: TITUS Admin Console
[12F0:11DC][2012-11-08T10:01:55]: Found dependent: 
{bbb1472c-3207-44d1-9790-b2e7577f8d18}, name: TITUS Admin Console
[12F0:11DC][2012-11-08T10:01:55]: Found dependent: 
{c336a47c-c16c-4a64-b645-e933dac1f982}, name: TITUS Admin Console
[12F0:11DC][2012-11-08T10:01:55]: Found dependent: 
{c559fcfa-0862-45cd-b568-af3d3a7ffbfc}, name: TITUS Admin Console
[12F0:11DC][2012-11-08T10:01:55]: Found dependent: 
{e19f36ec-d435-4780-8de0-f8cec0f9ab36}, name: TITUS Admin Console
[12F0:11DC][2012-11-08T10:01:55]: Found dependent: 
{e26b1920-eeaa-452c-a2b0-3936435ce330}, name: TITUS Admin Console
[12F0:11DC][2012-11-08T10:01:55]: Found dependent: 
{ead0ab91-c3c3-4103-94b3-fe16bceb9480}, name: TITUS Admin Console
[12F0:11DC][2012-11-08T10:01:55]: Found dependent: 
{ed96e893-dc34-40f2-a67d-ceb85961c113}, name: TITUS Admin Console
[12F0:11DC][2012-11-08T10:01:55]: Found dependent: 
{f40ec969-0184-43ed-afef-e4e797f1268e}, name: TITUS Admin Console
[12F0:11DC][2012-11-08T10:01:55]: Found dependent: 
{f4e94320-54a3-4e8e-bc88-ddf5b47043e2}, name: TITUS Admin Console
[12F0:11DC][2012-11-08T10:01:55]: Found dependent: 
{f9f58c9d-48dc-4e70-8436-e66d2d984013}, name: TITUS Admin Console
[12F0:11DC][2012-11-08T10:01:55]: Skipping dependency registration on package 
with no dependency providers: SQLExpressx64
[12F0:11DC][2012-11-08T10:01:55]: Skipping dependency registration on package 
with no dependency providers: SQLExpressx86
[12F0:11DC][2012-11-08T10:01:55]: Skipping dependency registration on package 
with no dependency providers: Netfx4Full
[12F0:11DC][2012-11-08T10:01:55]: Planned package: MainInstall, state: Present, 
default requested: Absent, ba requested: Absent, execute: None, rollback: None, 
cache: No, uncache: No, dependency: Unregister
[12F0:11DC][2012-11-08T10:01:55]: Planned package: DatabaseProvidersx86, state: 
Present, default requested: None, ba requested: None, execute: None, rollback: 
None, cache: No, uncache: No, dependency: Unregister
[12F0:11DC][2012-11-08T10:01:55]: Planned package: DatabaseProvidersx64, state: 
Present, default requested: None, ba requested: None, execute: None, rollback: 
None, cache: No, uncache: No, dependency: Unregister
[12F0:11DC][2012-11-08T10:01:55]: Planned package: A_Synchronizationx64, state: 
Present, default requested: None, ba requested: None, execute: None, rollback: 
None, cache: No, uncache: No, dependency: Unregister
[12F0:11DC][2012-11-08T10:01:55]: Planned package: A_Synchronizationx86, state: 
Present, default requested: None, ba requested: None, execute: None, rollback: 
None, cache: No, uncache: No, dependency: Unregister
[12F0:11DC][2012-11-08T10:01:55]: Planned package: SharedManagementObjects_x64, 
state: Present, default requested: None, ba requested: None, execute: None, 
rollback: None, cache: No, uncache: No, dependency: Unregister
[12F0:11DC][2012-11-08T10:01:55]: Planned package: SharedManagementObjects_x86, 
state: Present, default requested: None, ba requested: None, execute: None, 
rollback: None, cache: No, uncache: No, dependency: Unregister
[12F0:11DC][2012-11-08T10:01:55]: Planned package: SQLSysClrTypesx64, state: 
Present, default requested: None, ba requested: None, execute: None, rollback: 
None, cache: No, uncache: No, dependency: Unregister
[12F0:11DC][2012-11-08T10:01:55]: Planned package: SQLSysClrTypesx86, state: 
Present, default requested: None, ba requested: None, execute: None, rollback: 
None, cache: No, uncache: No, dependency: Unregister
[12F0:11DC][2012-11-08T10:01:55]: Planned package: SQLCoreXMLx64, state: 
Absent, default requested: None, ba requested: None, execute: None, rollback: 
None, cache: No, uncache: Yes, dependency: Unregister

Re: [WiX-users] Questions on custom actions section on Wix.chm and DTF.chm

2012-11-08 Thread Hoover, Jacob
An extension is used to extend the dialect of WIX at compile time (Ex: 
UtilExtension and WixCreateInternetShortcuts) which may involve dynamically 
adding a custom action DLL for the MSI use to execute the new logic. Custom 
actions are only used as a function during runtime, though they are hard to get 
right because any CA that would modify the install needs to properly handle 
rollback and uninstall.

If your idea for the CA is simply to assist in the installation experience but 
not change the payload, then I would advise to drive the MSI with properties 
and use burn and a managed BA to populate the properties.

-Original Message-
From: lzy126_2012 [mailto:lzy126_2...@126.com] 
Sent: Wednesday, November 07, 2012 6:19 PM
To: wix-users
Subject: [WiX-users] Questions on custom actions section on Wix.chm and DTF.chm

Hi there,
  I am completely a freshman to WiX. And I am learning how to build a managed 
CA dll and execute it in MSI.
First, I have read the following sections in WiX Documentation (WiX.chm) 
shipped by the wix setup 3.7 (the lastest):
Developing for WiX
   --Developing WiX Extensions
  --Creating a Simple WiX Extension 
  and
  --Add Custom Actions
Second, I noticed some sections in the DTF.chm.
Deployment Tools Foundation Development Guide
--Managed Customs Actions'
   --Writing Managed Custom Actions
 --Specifying the Runtime Version 
 and  
 --Sample C# Customs Actions
 and 
   --Building Managed Custom Actions.
Are these sections of the two documents talking about the same thing?
In Wix.chm, it says users have to inherit the WixExtension class and add the 
AssemblyDefaultWixExtensionAttribute to your AssemblyInfo.cs, then after 
building it we get the dll file, and reference it in wxs project 

But in DFT.chm does not mention the WixExtension class, and the building step 
is more complicated than that in Wix.chm: First compliing and second wrapping.
I just want to write a very simple test that a custom managed CA dll prompts a 
messagebox (MessageBox.Show(..)) during the installaton.
What should I do?
By the way, May I ask where can I download the examples mentioned in the 
Wix.chm and the DFT.chm.
Thanks.


zy li

2012-11-08 



lzy126_2012
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for free 
today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Failed to verify certificate chain policy status

2012-11-08 Thread Ian Williams
Hi,

A user is reporting a problem with a shipped installer that my team has not 
seen before. It uses a wixstdba bootstrapper to wrap several MSIs. I think the 
WiX build used was from about a month or two before the WiX 3.6 Release 
Candidate, though it might  be a more recent build.

The user reports:

[11B8:10CC][2012-10-05T15:08:45]: Error 0x800b010a: Failed to verify 
certificate chain policy status.
[11B8:10CC][2012-10-05T15:08:45]: Error 0x800b010a: Failed to get certificate 
chain for authenticode certificate.
[11B8:10CC][2012-10-05T15:08:45]: Error 0x800b010a: Failed to verify signature 
of payload: package_name
[11B8:10CC][2012-10-05T15:08:45]: Failed to verify payload: package_name at 
path: C:\ProgramData\Package Cache\.unverified\ package_name, error: 
0x800b010a. Deleting file.
[11B8:10CC][2012-10-05T15:08:45]: Error 0x800b010a: Failed to cache payload: 
package_name
[0130:0B3C][2012-10-05T15:08:45]: Failed to cache payload: package_name from 
working path: 
C:\Users\o515671\AppData\Local\Temp\2\{e0328255-3f36-4c55-b959-379ddaeee93f}\ 
package_name, error: 0x800b010a.

Any idea what this means? We've had thousands of users successfully run the 
full signed installer without running into any signing-related issues before.

Thanks,
Ian
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Failed to verify certificate chain policy status

2012-11-08 Thread Hoover, Jacob
The install log would tell you what exact version of Wix you are using. If it 
isn't the RC, the first suggestion is going to be to update to the RTM version. 
 If you are signing your MSI and EXE with the same digital certificate, what 
happens if the user tries to view the certificate on the exe?  (Are they 
missing a root certificate update?)


-Original Message-
From: Ian Williams [mailto:iawil...@microsoft.com] 
Sent: Thursday, November 08, 2012 10:13 AM
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] Failed to verify certificate chain policy status

Hi,

A user is reporting a problem with a shipped installer that my team has not 
seen before. It uses a wixstdba bootstrapper to wrap several MSIs. I think the 
WiX build used was from about a month or two before the WiX 3.6 Release 
Candidate, though it might  be a more recent build.

The user reports:

[11B8:10CC][2012-10-05T15:08:45]: Error 0x800b010a: Failed to verify 
certificate chain policy status.
[11B8:10CC][2012-10-05T15:08:45]: Error 0x800b010a: Failed to get certificate 
chain for authenticode certificate.
[11B8:10CC][2012-10-05T15:08:45]: Error 0x800b010a: Failed to verify signature 
of payload: package_name
[11B8:10CC][2012-10-05T15:08:45]: Failed to verify payload: package_name at 
path: C:\ProgramData\Package Cache\.unverified\ package_name, error: 
0x800b010a. Deleting file.
[11B8:10CC][2012-10-05T15:08:45]: Error 0x800b010a: Failed to cache payload: 
package_name
[0130:0B3C][2012-10-05T15:08:45]: Failed to cache payload: package_name from 
working path: 
C:\Users\o515671\AppData\Local\Temp\2\{e0328255-3f36-4c55-b959-379ddaeee93f}\ 
package_name, error: 0x800b010a.

Any idea what this means? We've had thousands of users successfully run the 
full signed installer without running into any signing-related issues before.

Thanks,
Ian
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for free 
today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] heat failing over a network

2012-11-08 Thread Matthew Clark
Hello all:
I have an issue with a .net dll failing to be harvested over the network.  
Harvesting works fine if the file is local, but when it is at a network 
location it fails with the error:

Warning HEAT5151: Could not harvest data from a file that was expected to be an 
assembly: \\blah\foo.dllfile:///\\blah\foo.dll.  If this file is not an 
assembly you can ignore this warning. Otherwise this error detail may be 
helpful to diagnose the failure: Could not load file or assembly 
'file://\\blah\foo.dll' or one of its dependencies. Operation is not supported. 
 (Exception form HRESULT: 0x80131515)


I should note that the other dll's in the folder I am harvesting harvest fine, 
though they are just com dlls, and not .net.

Thank you for any help,
Matt C.

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] ExePackage uninstalled on upgrade

2012-11-08 Thread Nick Ramirez
Would you say that the Requires element is not needed? I thought that
Requires might be placed inside of an MsiPackage or ExePackage, for
instance, to reference the Provides. But apparently the schema doesn't
support that. It can only be placed under a Bundle, Fragment or Provides. Is
it not used/needed?



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/ExePackage-uninstalled-on-upgrade-tp7580962p7581824.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] How to invoke XmlFile standard custom action after ExitDialog

2012-11-08 Thread Norbert Schmid
Hi, 

I have quite a simple wxs file using WixUI_Minimal. At the end of the
install procedure I want to ask the user for an install option and depending
on it I want to patch one entry in the installed exe.config file. As I
understand there is the XmlFile utility in WixUtilExtension, which can do
this. Furthermore the exit dialog allows to customize a checkbox for
arbitrary boolean input.
 
I found lots of examples how this checkbox can be used to launch an
application after the install is done, but I have no idea how I can invoke
the XmlFile utility instead.
 
Is this possible? How? 

Thanks, 
Norbert



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-invoke-XmlFile-standard-custom-action-after-ExitDialog-tp7581825.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Noob question: Conditional overwrite

2012-11-08 Thread Kai Peters
Hi all,

I need to detect if a file with name xxx sits beside the MSI during install and 
if it does, copy it

A) over top of a freshly installed file by the same name in the product 
directory (in case of a 
fresh install)

B) over top of an already existing file by the same name in the product 
directory (in case of an 
update)

I believe that I need to use CopyFile and FileSearch to achieve this but am not 
clear on how to do 
this; for instance, does sequencing come into play (in the case of A) obviously 
the file copying 
must already have happened before I can attempt to overwrite).

Any pitfalls around sufficient rights to overwriting files?



Thanks for any pointers,
K



--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How to get content of a file component

2012-11-08 Thread tzleon
Can anyone help please?



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-get-content-of-a-file-component-tp7581768p7581827.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Problem in Major upgrade

2012-11-08 Thread Chaitanya
Thanks for responding..
After your message I tried it.upgrade is working.but it is deleting the
older version,upgrading the newer.
But in my scenario I don't want to delete old files.i want to replace new
files to my older version.Is it Possible.

-Original Message-
From: Chris Lord [mailto:chris.l...@atterotech.com] 
Sent: 08 November 2012 20:32
To: wix-users
Subject: Re: [WiX-users] Problem in Major upgrade

Chaitanya

Are both the original and the update installtion the same type?  If one is
per-user and the other is per-machine then the upgrade wont work.  
You could also run the Upgrade with verbose logging enabled.  The log will
tell you why it didnt remove the older version.

Also, give the version you use, I'd go with what Neil suggested and
investigate and use the MajorUpgrade element instead.  It tidies things up
a lot.

Chris


-Original Message-
From: Chaitanya [mailto:chaita...@pointcross.com]
Sent: Thursday, November 08, 2012 5:18 AM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] Problem in Major upgrade

Iam using wix 3.5

-Original Message-
From: Chris Lord [mailto:chris.l...@atterotech.com]
Sent: 07 November 2012 20:41
To: wix-users
Subject: Re: [WiX-users] Problem in Major upgrade

Chaitanya

What version of Wix are you using?

Chris 

-Original Message-
From: Chaitanya [mailto:chaita...@pointcross.com]
Sent: Wednesday, November 07, 2012 4:43 AM
To: WiX-users@lists.sourceforge.net
Subject: [WiX-users] Problem in Major upgrade

Hi,

Iam trying to do major upgrade.

Its doing action but in my control panel it is showing two entries don't
want two entries.

Here is my upgrade code.

Upgrade Id=5CFFD7A1-03B9-4B07-87C0-9B84555CC15D

  UpgradeVersion Minimum=1.0.0.0 IncludeMinimum=no 
OnlyDetect=yes
Property=NEWPRODUCTFOUND Language=1033 /

  UpgradeVersion Minimum=1.0.0.0 IncludeMinimum=yes
Maximum=2.0.0.0 IncludeMaximum=no Property=UPGRADEFOUND
Language=1033 /

/Upgrade

CustomAction Id=PreventDowngrading Error=Newer Version Already
Installed /

InstallExecuteSequence

  Custom Action=PreventDowngrading
After=FindRelatedProductsnewProductFound/Custom

  RemoveExistingProducts
After=InstallFinalize/RemoveExistingProducts

/InstallExecuteSequence

Iam changing the product code and maintaining upgrade code same. Through
command line msiexec /I {.msi} ALLUSERS=1

Please help  me where im doing wrong.

Thanks,

Chaitanya.


--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues Automate,
monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users





--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues Automate,
monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics Download AppDynamics Lite for
free today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users




--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users