[WiX-users] msi failed in uninstallation

2014-11-12 Thread Mohamed Yasir
Hi,

I have created two msi file (sample1  sample2) using wix toolset3.8. 

While uninstalling msi  through wix custom bootstrapper,it shows an below
error.

MSI (s) (20:94) [01:01:37:045]: Resolving source to launched-from source.
MSI (s) (20:94) [01:01:37:045]: Setting launched-from source as last-used.
MSI (s) (20:94) [01:01:37:045]: PROPERTY CHANGE: Adding SourceDir property.
Its value is 'C:\windows\Installer\'.
MSI (s) (20:94) [01:01:37:045]: PROPERTY CHANGE: Adding SOURCEDIR property.
Its value is 'C:\windows\Installer\'.
MSI (s) (20:94) [01:01:37:045]: PROPERTY CHANGE: Adding SourcedirProduct
property. Its value is '{06FE2968-FD34-49E6-9310-5F097F2FE736}'.
MSI (s) (20:94) [01:01:37:045]: SOURCEDIR == C:\windows\Installer\
MSI (s) (20:94) [01:01:37:045]: SOURCEDIR product ==
{06FE2968-FD34-49E6-9310-5F097F2FE736}
MSI (s) (20:94) [01:01:37:045]: Determining source type
MSI (s) (20:94) [01:01:37:045]: Note: 1: 2203 2:
C:\windows\Installer\sample1.msi 3: -2147287038 
MSI (s) (20:94) [01:01:37:045]: Note: 1: 1316 2:
C:\windows\Installer\sample1.msi 
MSI (s) (20:94) [01:01:37:045]: Note: 1: 2205 2:  3: Error 
MSI (s) (20:94) [01:01:37:045]: Note: 1: 2228 2:  3: Error 4: SELECT
`Message` FROM `Error` WHERE `Error` = 1316 
Error 1316. A network error occurred while attempting to read from the file:
C:\windows\Installer\sample1.msi
MSI (s) (20:94) [01:01:37:049]: Note: 1: 2205 2:  3: Error 
MSI (s) (20:94) [01:01:37:049]: Note: 1: 2228 2:  3: Error 4: SELECT
`Message` FROM `Error` WHERE `Error` = 1709 
MSI (s) (20:94) [01:01:37:049]: Product: Sample MSI -- Error 1316. A network
error occurred while attempting to read from the file:
C:\windows\Installer\sample1.msi

can you please share why this kind of error occurred ? 

Please share any idea on this.

Regards,
Mohamed Yasir K



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/msi-failed-in-uninstallation-tp7597864.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Comprehensive Server Monitoring with Site24x7.
Monitor 10 servers for $9/Month.
Get alerted through email, SMS, voice calls or mobile push notifications.
Take corrective actions from your mobile device.
http://pubads.g.doubleclick.net/gampad/clk?id=154624111iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] msi failed in uninstallation

2014-11-12 Thread Phil Wilson
The obvious question to ask is whether the MSI file actually is there
at that location, which seems an odd location (it's where cached MSIs
are). If it is there, it had better be the same package and product
code as the original install, that's a requirement. Also check the
permissions to that directory for the system account.

Finally, there is usually no need to find the original MSI to perform
an uninstall. The log shows a ResolveSource, which is what's causing
that, but not the reason for it, which may be earlier in the log.
Maybe you have an explicit unconditional ResolveSource in your MSI,
which will cause all MSI actions to go find the original source MSI
file.
---
Phil Wilson


On Wed, Nov 12, 2014 at 3:17 AM, Mohamed Yasir yasirmohame...@gmail.com wrote:
 Hi,

 I have created two msi file (sample1  sample2) using wix toolset3.8.

 While uninstalling msi  through wix custom bootstrapper,it shows an below
 error.

 MSI (s) (20:94) [01:01:37:045]: Resolving source to launched-from source.
 MSI (s) (20:94) [01:01:37:045]: Setting launched-from source as last-used.
 MSI (s) (20:94) [01:01:37:045]: PROPERTY CHANGE: Adding SourceDir property.
 Its value is 'C:\windows\Installer\'.
 MSI (s) (20:94) [01:01:37:045]: PROPERTY CHANGE: Adding SOURCEDIR property.
 Its value is 'C:\windows\Installer\'.
 MSI (s) (20:94) [01:01:37:045]: PROPERTY CHANGE: Adding SourcedirProduct
 property. Its value is '{06FE2968-FD34-49E6-9310-5F097F2FE736}'.
 MSI (s) (20:94) [01:01:37:045]: SOURCEDIR == C:\windows\Installer\
 MSI (s) (20:94) [01:01:37:045]: SOURCEDIR product ==
 {06FE2968-FD34-49E6-9310-5F097F2FE736}
 MSI (s) (20:94) [01:01:37:045]: Determining source type
 MSI (s) (20:94) [01:01:37:045]: Note: 1: 2203 2:
 C:\windows\Installer\sample1.msi 3: -2147287038
 MSI (s) (20:94) [01:01:37:045]: Note: 1: 1316 2:
 C:\windows\Installer\sample1.msi
 MSI (s) (20:94) [01:01:37:045]: Note: 1: 2205 2:  3: Error
 MSI (s) (20:94) [01:01:37:045]: Note: 1: 2228 2:  3: Error 4: SELECT
 `Message` FROM `Error` WHERE `Error` = 1316
 Error 1316. A network error occurred while attempting to read from the file:
 C:\windows\Installer\sample1.msi
 MSI (s) (20:94) [01:01:37:049]: Note: 1: 2205 2:  3: Error
 MSI (s) (20:94) [01:01:37:049]: Note: 1: 2228 2:  3: Error 4: SELECT
 `Message` FROM `Error` WHERE `Error` = 1709
 MSI (s) (20:94) [01:01:37:049]: Product: Sample MSI -- Error 1316. A network
 error occurred while attempting to read from the file:
 C:\windows\Installer\sample1.msi

 can you please share why this kind of error occurred ?

 Please share any idea on this.

 Regards,
 Mohamed Yasir K



 --
 View this message in context: 
 http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/msi-failed-in-uninstallation-tp7597864.html
 Sent from the wix-users mailing list archive at Nabble.com.

 --
 Comprehensive Server Monitoring with Site24x7.
 Monitor 10 servers for $9/Month.
 Get alerted through email, SMS, voice calls or mobile push notifications.
 Take corrective actions from your mobile device.
 http://pubads.g.doubleclick.net/gampad/clk?id=154624111iu=/4140/ostg.clktrk
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

--
Comprehensive Server Monitoring with Site24x7.
Monitor 10 servers for $9/Month.
Get alerted through email, SMS, voice calls or mobile push notifications.
Take corrective actions from your mobile device.
http://pubads.g.doubleclick.net/gampad/clk?id=154624111iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users