Re: [WiX-users] Pyro Error PYRO0013 - Id lengths

2013-05-02 Thread Bob Arnson
On 01-May-13 16:00, Alistair Imrie wrote:
 I came across a peculiar problem today while using Pyro to build a patch - 
 error PYRO0013, complaining that the length of an internal Id was too long.
What was the actual error message?

-- 
sig://boB
http://joyofsetup.com/


--
Get 100% visibility into Java/.NET code with AppDynamics Lite
It's a free troubleshooting tool designed for production
Get down to code-level detail for bottlenecks, with 2% overhead.
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Pyro Error PYRO0013 - Id lengths

2013-05-01 Thread Alistair Imrie
I came across a peculiar problem today while using Pyro to build a patch - 
error PYRO0013, complaining that the length of an internal Id was too long. It 
appears that Pyro had taken a file or component Id from my installer, and added 
the prefix Patch. to generate its internal Id. Pyro said that the total Id 
length was limited to 62 characters. The peculiar thing is that the original Id 
in my installer is in a field where the length is only limited to 72 
characters. Thus, Pyro seems to be taking data that could be 72 characters 
long, sticking 6 characters on the front, and slotting that into a space 
limited to 62 characters. Can anyone else see a problem here? 

 

Good job I haven't shipped the original installer yet, as now I have to go and 
shorten all those Ids that are longer than 56 characters!

 

Or am I missing something?



--
Introducing AppDynamics Lite, a free troubleshooting tool for Java/.NET
Get 100% visibility into your production application - at no cost.
Code-level diagnostics for performance bottlenecks with 2% overhead
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap1
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Pyro error: PYRO0227

2012-03-06 Thread tomer.c
Hi all,
I'm having trouble with pyro, I get the PYRO0227 error even though I
know there are changes between the files it's comparing.
I even debugged the pyro c# code, what I saw was that the
FileManager.CompareFiles works great, and the rows are marked
RowOperation.Modify. but the GenerateTransform method that calls the
MsiInterop.MsiDatabaseGenerateTransform returns the ERROR_NO_DATA(0xE8)
means no differences were found I don't know why...
When I go and change something manually in one of the text files I have
everything works fine... but the .NET assemblies that is KNOW changed
won't make it work... when it does work I get everything inside the msp
files...
Please help!
Thanks.

--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Pyro error: PYRO0227

2012-03-05 Thread tomer.c
Hi all,
I'm having trouble with pyro, I get the PYRO0227 error even though I
know there are changes between the files it's comparing.
I even debugged the pyro c# code, what I saw was that the
FileManager.CompareFiles works great, and the rows are marked
RowOperation.Modify. but the GenerateTransform method that calls the
MsiInterop.MsiDatabaseGenerateTransform returns the ERROR_NO_DATA(0xE8)
means no differences were found I don't know why...
When I go and change something manually in one of the text files I have
everything works fine... but the .NET assemblies that is KNOW changed
won't make it work... when it does work I get everything inside the msp
files...
Please help!
Thanks.

--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] pyro error - empty cab file PYR01079

2011-05-04 Thread Michael Tissington
I'm trying to create a very simple path - simply changing the contents of a
html file

I have both old and new msi and wixpdb files

If do an install of the old and then upgrade to the new.msi the old and new
html files are correct in each case so I know my msi files are correct.

I run the following

Torch
Candle
Light
Pyro

When I get to pyro I get a couple of errors:

PYRO1079 - cabinet file does not contain any files
PYRO0227 - transform did not contain any differences

Why is it not detecting the changed file?

This is my patch.wxs

?xml version=1.0 encoding=UTF-8?
Wix xmlns=http://schemas.microsoft.com/wix/2006/wi;
  Patch AllowRemoval=yes
 Manufacturer=mycompany
 DisplayName=Session Insight Patch 
 Description=Test Patch
 Classification=Hotfix
Media Id=5000 Cabinet=patch.cab
  PatchBaseline Id=patch /
/Media
PatchFamilyRef Id=SmallPatchFamily/
  /Patch
  Fragment
PatchFamily Id=SmallPatchFamily Version=1.0.0.0 Supersede=yes
  ComponentRef Id=SIM.en_US.help/
/PatchFamily
/Fragment
/Wix

In my main wix I have the following fragment

  Fragment
DirectoryRef Id=en_US
  Component Id=SIM.en_US.help
Guid=C26BB96F-111A-484D-BAE1-18A5FD009DD6 
File Id='en_us.help' Name='help.htm' DiskId='1'
Source='$(env.CIQUAL_Config)\en-us\help.htm' /
File Id='en_us.logo_nextplora' Name='logo_nextplora.gif' DiskId='1'
Source='$(env.CIQUAL_Config)\en-us\logo_nextplora.gif' /
  /Component
/DirectoryRef
  /Fragment




--
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Pyro error

2009-12-02 Thread Blair
No, don't try it with the option. It converts the warning into an error.

-Original Message-
From: Anurag Pahwa [mailto:apa...@microsoft.com] 
Sent: Tuesday, December 01, 2009 6:40 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Pyro error

If the warning is not causing any issues I think we can ignore that. We can
take care of this in the SP1 release.

No I did not. DO you want me to try it with the option?

Ok let me know if you need any information.

Thanks
Anurag

-Original Message-
From: Blair [mailto:os...@live.com] 
Sent: Monday, November 30, 2009 11:45 PM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] Pyro error

Regarding the warning: since you released, you are stuck with the warning
unless you are willing to change both filenames and the component guid
(along with any registry paths you declare in that same component).

Regarding the error: you don't happen to have -wx in your pyro
commandline, do you?

I'll try to reproduce your error here, but it may be later in the week (or
even next week) before I can get to it.

-Original Message-
From: Anurag Pahwa [mailto:apa...@microsoft.com] 
Sent: Monday, November 30, 2009 7:02 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Pyro error

No we don't explicitly designate the file and the first file is the
FSCREG.cfg file. We did release the MSI.

I did try that as well and still getting the error.


-Original Message-
From: Blair [mailto:os...@live.com] 
Sent: Tuesday, November 24, 2009 11:18 PM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] Pyro error

Regarding the warning: in your AdminInstall_Component component, do you
explicitly designate which file is the keypath? If you don't, the first one
listed often becomes the keypath. If you have already released your MSI, you
might be too late to easily fix this, however.

Regarding the error: to know definitively if the anti-virus is to blame, try
turning off the real-time scanning right before you start your build (make
sure to turn it back on right after the build finishes). If that doesn't
clear the error, I'll help you keep digging.

-Original Message-
From: Anurag Pahwa [mailto:apa...@microsoft.com] 
Sent: Tuesday, November 24, 2009 9:00 AM
To: Anurag Pahwa; General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Pyro error

Tried the WIX_TEMP and still getting the same error.

pyro.exe : warning PYRO1097 : File 'FSSAClient.exe' in Component
'AdminInstall_Component' was changed, but the KeyPath file 'FSCReg.cfg' was
not. This file will not be pa
tched on the target system if the REINSTALLMODE does not contain 'A'. The
KeyPath file should also be changed and included in your patch.
C:\wix\temp\tyqlnkaz\Patch.msp : error PYRO0103 : The system cannot find the
file 'C:\wix\temp\tyqlnkaz\Patch.msp'.

Any ideas.

-Original Message-
From: Anurag Pahwa 
Sent: Tuesday, November 24, 2009 9:25 AM
To: 'General discussion for Windows Installer XML toolset.'
Subject: RE: [WiX-users] Pyro error

I'll try that.

I think problem might be the FSCReg.cfg file is a non versioned file whereas
the FSSACLient.exe is a versioned file. Isn't it weird that it expects the
FSCReg.cfg to be changed when we change the fssaclient.exe file? I'm not
removing anything from the patch.

-Original Message-
From: Blair [mailto:os...@live.com] 
Sent: Tuesday, November 24, 2009 2:20 AM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] Pyro error

The error may possibly be caused by anti-virus software running on your
build box. Or, it might be related to the earlier warnings (I couldn't
tell). Try using the WIX_TEMP environment variable to move the temp folder
used and suppress that folder (the one you specify in your WIX_TEMP value)
in your anti-virus.

What are the changes in the AdminInstall_Component between the two builds?
You shouldn't normally be adding/removing/renaming files in a minor
upgrade/small update (which working patches are) inside of a component.

-Original Message-
From: Anurag Pahwa [mailto:apa...@microsoft.com] 
Sent: Monday, November 23, 2009 7:55 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Pyro error

Hi Guys,

I'm getting these pyro warnings and then the error. Any ideas?

pyro.exe : warning PYRO1097 : File 'FSSAClient.exe' in Component
'AdminInstall_Component' was changed, but the KeyPath file 'FSCReg.cfg' was
not. This file will not be pa
tched on the target system if the REINSTALLMODE does not contain 'A'. The
KeyPath file should also be changed and included in your patch.
C:\Documents and Settings\a-anup\Local Settings\Temp\zbp-1f6q\Patch.msp :
error PYRO0103 : The system cannot find the file 'C:\Documents and
Settings\a-anup\Local Setting
s\Temp\zbp-1f6q\Patch.msp'.

Thanks
Anurg

Re: [WiX-users] Pyro error

2009-12-01 Thread Anurag Pahwa
If the warning is not causing any issues I think we can ignore that. We can 
take care of this in the SP1 release.

No I did not. DO you want me to try it with the option?

Ok let me know if you need any information.

Thanks
Anurag

-Original Message-
From: Blair [mailto:os...@live.com] 
Sent: Monday, November 30, 2009 11:45 PM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] Pyro error

Regarding the warning: since you released, you are stuck with the warning
unless you are willing to change both filenames and the component guid
(along with any registry paths you declare in that same component).

Regarding the error: you don't happen to have -wx in your pyro
commandline, do you?

I'll try to reproduce your error here, but it may be later in the week (or
even next week) before I can get to it.

-Original Message-
From: Anurag Pahwa [mailto:apa...@microsoft.com] 
Sent: Monday, November 30, 2009 7:02 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Pyro error

No we don't explicitly designate the file and the first file is the
FSCREG.cfg file. We did release the MSI.

I did try that as well and still getting the error.


-Original Message-
From: Blair [mailto:os...@live.com] 
Sent: Tuesday, November 24, 2009 11:18 PM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] Pyro error

Regarding the warning: in your AdminInstall_Component component, do you
explicitly designate which file is the keypath? If you don't, the first one
listed often becomes the keypath. If you have already released your MSI, you
might be too late to easily fix this, however.

Regarding the error: to know definitively if the anti-virus is to blame, try
turning off the real-time scanning right before you start your build (make
sure to turn it back on right after the build finishes). If that doesn't
clear the error, I'll help you keep digging.

-Original Message-
From: Anurag Pahwa [mailto:apa...@microsoft.com] 
Sent: Tuesday, November 24, 2009 9:00 AM
To: Anurag Pahwa; General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Pyro error

Tried the WIX_TEMP and still getting the same error.

pyro.exe : warning PYRO1097 : File 'FSSAClient.exe' in Component
'AdminInstall_Component' was changed, but the KeyPath file 'FSCReg.cfg' was
not. This file will not be pa
tched on the target system if the REINSTALLMODE does not contain 'A'. The
KeyPath file should also be changed and included in your patch.
C:\wix\temp\tyqlnkaz\Patch.msp : error PYRO0103 : The system cannot find the
file 'C:\wix\temp\tyqlnkaz\Patch.msp'.

Any ideas.

-Original Message-
From: Anurag Pahwa 
Sent: Tuesday, November 24, 2009 9:25 AM
To: 'General discussion for Windows Installer XML toolset.'
Subject: RE: [WiX-users] Pyro error

I'll try that.

I think problem might be the FSCReg.cfg file is a non versioned file whereas
the FSSACLient.exe is a versioned file. Isn't it weird that it expects the
FSCReg.cfg to be changed when we change the fssaclient.exe file? I'm not
removing anything from the patch.

-Original Message-
From: Blair [mailto:os...@live.com] 
Sent: Tuesday, November 24, 2009 2:20 AM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] Pyro error

The error may possibly be caused by anti-virus software running on your
build box. Or, it might be related to the earlier warnings (I couldn't
tell). Try using the WIX_TEMP environment variable to move the temp folder
used and suppress that folder (the one you specify in your WIX_TEMP value)
in your anti-virus.

What are the changes in the AdminInstall_Component between the two builds?
You shouldn't normally be adding/removing/renaming files in a minor
upgrade/small update (which working patches are) inside of a component.

-Original Message-
From: Anurag Pahwa [mailto:apa...@microsoft.com] 
Sent: Monday, November 23, 2009 7:55 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Pyro error

Hi Guys,

I'm getting these pyro warnings and then the error. Any ideas?

pyro.exe : warning PYRO1097 : File 'FSSAClient.exe' in Component
'AdminInstall_Component' was changed, but the KeyPath file 'FSCReg.cfg' was
not. This file will not be pa
tched on the target system if the REINSTALLMODE does not contain 'A'. The
KeyPath file should also be changed and included in your patch.
C:\Documents and Settings\a-anup\Local Settings\Temp\zbp-1f6q\Patch.msp :
error PYRO0103 : The system cannot find the file 'C:\Documents and
Settings\a-anup\Local Setting
s\Temp\zbp-1f6q\Patch.msp'.

Thanks
Anurg

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus
on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http

Re: [WiX-users] Pyro error

2009-11-30 Thread Anurag Pahwa
No we don't explicitly designate the file and the first file is the FSCREG.cfg 
file. We did release the MSI.

I did try that as well and still getting the error.


-Original Message-
From: Blair [mailto:os...@live.com] 
Sent: Tuesday, November 24, 2009 11:18 PM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] Pyro error

Regarding the warning: in your AdminInstall_Component component, do you
explicitly designate which file is the keypath? If you don't, the first one
listed often becomes the keypath. If you have already released your MSI, you
might be too late to easily fix this, however.

Regarding the error: to know definitively if the anti-virus is to blame, try
turning off the real-time scanning right before you start your build (make
sure to turn it back on right after the build finishes). If that doesn't
clear the error, I'll help you keep digging.

-Original Message-
From: Anurag Pahwa [mailto:apa...@microsoft.com] 
Sent: Tuesday, November 24, 2009 9:00 AM
To: Anurag Pahwa; General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Pyro error

Tried the WIX_TEMP and still getting the same error.

pyro.exe : warning PYRO1097 : File 'FSSAClient.exe' in Component
'AdminInstall_Component' was changed, but the KeyPath file 'FSCReg.cfg' was
not. This file will not be pa
tched on the target system if the REINSTALLMODE does not contain 'A'. The
KeyPath file should also be changed and included in your patch.
C:\wix\temp\tyqlnkaz\Patch.msp : error PYRO0103 : The system cannot find the
file 'C:\wix\temp\tyqlnkaz\Patch.msp'.

Any ideas.

-Original Message-
From: Anurag Pahwa 
Sent: Tuesday, November 24, 2009 9:25 AM
To: 'General discussion for Windows Installer XML toolset.'
Subject: RE: [WiX-users] Pyro error

I'll try that.

I think problem might be the FSCReg.cfg file is a non versioned file whereas
the FSSACLient.exe is a versioned file. Isn't it weird that it expects the
FSCReg.cfg to be changed when we change the fssaclient.exe file? I'm not
removing anything from the patch.

-Original Message-
From: Blair [mailto:os...@live.com] 
Sent: Tuesday, November 24, 2009 2:20 AM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] Pyro error

The error may possibly be caused by anti-virus software running on your
build box. Or, it might be related to the earlier warnings (I couldn't
tell). Try using the WIX_TEMP environment variable to move the temp folder
used and suppress that folder (the one you specify in your WIX_TEMP value)
in your anti-virus.

What are the changes in the AdminInstall_Component between the two builds?
You shouldn't normally be adding/removing/renaming files in a minor
upgrade/small update (which working patches are) inside of a component.

-Original Message-
From: Anurag Pahwa [mailto:apa...@microsoft.com] 
Sent: Monday, November 23, 2009 7:55 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Pyro error

Hi Guys,

I'm getting these pyro warnings and then the error. Any ideas?

pyro.exe : warning PYRO1097 : File 'FSSAClient.exe' in Component
'AdminInstall_Component' was changed, but the KeyPath file 'FSCReg.cfg' was
not. This file will not be pa
tched on the target system if the REINSTALLMODE does not contain 'A'. The
KeyPath file should also be changed and included in your patch.
C:\Documents and Settings\a-anup\Local Settings\Temp\zbp-1f6q\Patch.msp :
error PYRO0103 : The system cannot find the file 'C:\Documents and
Settings\a-anup\Local Setting
s\Temp\zbp-1f6q\Patch.msp'.

Thanks
Anurg

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus
on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus
on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus
on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july

Re: [WiX-users] Pyro error

2009-11-24 Thread Anurag Pahwa
I'll try that.

I think problem might be the FSCReg.cfg file is a non versioned file whereas 
the FSSACLient.exe is a versioned file. Isn't it weird that it expects the 
FSCReg.cfg to be changed when we change the fssaclient.exe file? I'm not 
removing anything from the patch.

-Original Message-
From: Blair [mailto:os...@live.com] 
Sent: Tuesday, November 24, 2009 2:20 AM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] Pyro error

The error may possibly be caused by anti-virus software running on your
build box. Or, it might be related to the earlier warnings (I couldn't
tell). Try using the WIX_TEMP environment variable to move the temp folder
used and suppress that folder (the one you specify in your WIX_TEMP value)
in your anti-virus.

What are the changes in the AdminInstall_Component between the two builds?
You shouldn't normally be adding/removing/renaming files in a minor
upgrade/small update (which working patches are) inside of a component.

-Original Message-
From: Anurag Pahwa [mailto:apa...@microsoft.com] 
Sent: Monday, November 23, 2009 7:55 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Pyro error

Hi Guys,

I'm getting these pyro warnings and then the error. Any ideas?

pyro.exe : warning PYRO1097 : File 'FSSAClient.exe' in Component
'AdminInstall_Component' was changed, but the KeyPath file 'FSCReg.cfg' was
not. This file will not be pa
tched on the target system if the REINSTALLMODE does not contain 'A'. The
KeyPath file should also be changed and included in your patch.
C:\Documents and Settings\a-anup\Local Settings\Temp\zbp-1f6q\Patch.msp :
error PYRO0103 : The system cannot find the file 'C:\Documents and
Settings\a-anup\Local Setting
s\Temp\zbp-1f6q\Patch.msp'.

Thanks
Anurg

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus
on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Pyro error

2009-11-24 Thread Anurag Pahwa
Tried the WIX_TEMP and still getting the same error.

pyro.exe : warning PYRO1097 : File 'FSSAClient.exe' in Component 
'AdminInstall_Component' was changed, but the KeyPath file 'FSCReg.cfg' was 
not. This file will not be pa
tched on the target system if the REINSTALLMODE does not contain 'A'. The 
KeyPath file should also be changed and included in your patch.
C:\wix\temp\tyqlnkaz\Patch.msp : error PYRO0103 : The system cannot find the 
file 'C:\wix\temp\tyqlnkaz\Patch.msp'.

Any ideas.

-Original Message-
From: Anurag Pahwa 
Sent: Tuesday, November 24, 2009 9:25 AM
To: 'General discussion for Windows Installer XML toolset.'
Subject: RE: [WiX-users] Pyro error

I'll try that.

I think problem might be the FSCReg.cfg file is a non versioned file whereas 
the FSSACLient.exe is a versioned file. Isn't it weird that it expects the 
FSCReg.cfg to be changed when we change the fssaclient.exe file? I'm not 
removing anything from the patch.

-Original Message-
From: Blair [mailto:os...@live.com] 
Sent: Tuesday, November 24, 2009 2:20 AM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] Pyro error

The error may possibly be caused by anti-virus software running on your
build box. Or, it might be related to the earlier warnings (I couldn't
tell). Try using the WIX_TEMP environment variable to move the temp folder
used and suppress that folder (the one you specify in your WIX_TEMP value)
in your anti-virus.

What are the changes in the AdminInstall_Component between the two builds?
You shouldn't normally be adding/removing/renaming files in a minor
upgrade/small update (which working patches are) inside of a component.

-Original Message-
From: Anurag Pahwa [mailto:apa...@microsoft.com] 
Sent: Monday, November 23, 2009 7:55 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Pyro error

Hi Guys,

I'm getting these pyro warnings and then the error. Any ideas?

pyro.exe : warning PYRO1097 : File 'FSSAClient.exe' in Component
'AdminInstall_Component' was changed, but the KeyPath file 'FSCReg.cfg' was
not. This file will not be pa
tched on the target system if the REINSTALLMODE does not contain 'A'. The
KeyPath file should also be changed and included in your patch.
C:\Documents and Settings\a-anup\Local Settings\Temp\zbp-1f6q\Patch.msp :
error PYRO0103 : The system cannot find the file 'C:\Documents and
Settings\a-anup\Local Setting
s\Temp\zbp-1f6q\Patch.msp'.

Thanks
Anurg

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus
on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Pyro error

2009-11-24 Thread Blair
Regarding the warning: in your AdminInstall_Component component, do you
explicitly designate which file is the keypath? If you don't, the first one
listed often becomes the keypath. If you have already released your MSI, you
might be too late to easily fix this, however.

Regarding the error: to know definitively if the anti-virus is to blame, try
turning off the real-time scanning right before you start your build (make
sure to turn it back on right after the build finishes). If that doesn't
clear the error, I'll help you keep digging.

-Original Message-
From: Anurag Pahwa [mailto:apa...@microsoft.com] 
Sent: Tuesday, November 24, 2009 9:00 AM
To: Anurag Pahwa; General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Pyro error

Tried the WIX_TEMP and still getting the same error.

pyro.exe : warning PYRO1097 : File 'FSSAClient.exe' in Component
'AdminInstall_Component' was changed, but the KeyPath file 'FSCReg.cfg' was
not. This file will not be pa
tched on the target system if the REINSTALLMODE does not contain 'A'. The
KeyPath file should also be changed and included in your patch.
C:\wix\temp\tyqlnkaz\Patch.msp : error PYRO0103 : The system cannot find the
file 'C:\wix\temp\tyqlnkaz\Patch.msp'.

Any ideas.

-Original Message-
From: Anurag Pahwa 
Sent: Tuesday, November 24, 2009 9:25 AM
To: 'General discussion for Windows Installer XML toolset.'
Subject: RE: [WiX-users] Pyro error

I'll try that.

I think problem might be the FSCReg.cfg file is a non versioned file whereas
the FSSACLient.exe is a versioned file. Isn't it weird that it expects the
FSCReg.cfg to be changed when we change the fssaclient.exe file? I'm not
removing anything from the patch.

-Original Message-
From: Blair [mailto:os...@live.com] 
Sent: Tuesday, November 24, 2009 2:20 AM
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] Pyro error

The error may possibly be caused by anti-virus software running on your
build box. Or, it might be related to the earlier warnings (I couldn't
tell). Try using the WIX_TEMP environment variable to move the temp folder
used and suppress that folder (the one you specify in your WIX_TEMP value)
in your anti-virus.

What are the changes in the AdminInstall_Component between the two builds?
You shouldn't normally be adding/removing/renaming files in a minor
upgrade/small update (which working patches are) inside of a component.

-Original Message-
From: Anurag Pahwa [mailto:apa...@microsoft.com] 
Sent: Monday, November 23, 2009 7:55 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Pyro error

Hi Guys,

I'm getting these pyro warnings and then the error. Any ideas?

pyro.exe : warning PYRO1097 : File 'FSSAClient.exe' in Component
'AdminInstall_Component' was changed, but the KeyPath file 'FSCReg.cfg' was
not. This file will not be pa
tched on the target system if the REINSTALLMODE does not contain 'A'. The
KeyPath file should also be changed and included in your patch.
C:\Documents and Settings\a-anup\Local Settings\Temp\zbp-1f6q\Patch.msp :
error PYRO0103 : The system cannot find the file 'C:\Documents and
Settings\a-anup\Local Setting
s\Temp\zbp-1f6q\Patch.msp'.

Thanks
Anurg

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus
on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus
on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus
on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration

[WiX-users] Pyro error

2009-11-23 Thread Anurag Pahwa
Hi Guys,

I'm getting these pyro warnings and then the error. Any ideas?

pyro.exe : warning PYRO1097 : File 'FSSAClient.exe' in Component 
'AdminInstall_Component' was changed, but the KeyPath file 'FSCReg.cfg' was 
not. This file will not be pa
tched on the target system if the REINSTALLMODE does not contain 'A'. The 
KeyPath file should also be changed and included in your patch.
C:\Documents and Settings\a-anup\Local Settings\Temp\zbp-1f6q\Patch.msp : error 
PYRO0103 : The system cannot find the file 'C:\Documents and 
Settings\a-anup\Local Setting
s\Temp\zbp-1f6q\Patch.msp'.

Thanks
Anurg
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users