[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.setup

uninstall web application failed

Sven Cipido

12/4/2006 10:02:00 AM

I have created an ASP.Net 2.0 web project. I installed the web
deployment tool for creating the setup project. Afterwards I created
the MSI. Then we use ORCA to change a few parameters in the MSI (like
the target path,?). All this comes together in a kit which is used for
the installation on our servers.

The installation of the Kit on a Windows 2003 server works fine. When I
tried to uninstall the application it fails. This is the error I got:

Action start 13:31:55: WEBCA_EvaluateURLs.
DEBUG: Error 2769: Custom Action WEBCA_EvaluateURLs did not close 1
MSIHANDLEs.
The installer has encountered an unexpected error installing this
package. This may indicate a problem with this package. The error code
is 2769. The arguments are: WEBCA_EvaluateURLs, 1,
Action ended 13:31:56: WEBCA_EvaluateURLs. Return value 3.

I hope somebody can help me out with this problem.

Kind regards
Sven Cipido

*** Sent via Developersdex http://www.develop... ***
3 Answers

Gabriel Lozano-Morán

12/4/2006 10:13:00 PM

0

Hello Sven

Does the uninstall works fine before you modify the MSI with Orca? Also are
you using Orca that is included with the SDK for Windows Server 2003 Release
2?

Gabriel Lozano-Morán
http://www.po...

"Sven Cipido" <sven.cipido@ordina.be> wrote in message
news:OEtDts4FHHA.4588@TK2MSFTNGP05.phx.gbl...
>I have created an ASP.Net 2.0 web project. I installed the web
> deployment tool for creating the setup project. Afterwards I created
> the MSI. Then we use ORCA to change a few parameters in the MSI (like
> the target path,.). All this comes together in a kit which is used for
> the installation on our servers.
>
> The installation of the Kit on a Windows 2003 server works fine. When I
> tried to uninstall the application it fails. This is the error I got:
>
> Action start 13:31:55: WEBCA_EvaluateURLs.
> DEBUG: Error 2769: Custom Action WEBCA_EvaluateURLs did not close 1
> MSIHANDLEs.
> The installer has encountered an unexpected error installing this
> package. This may indicate a problem with this package. The error code
> is 2769. The arguments are: WEBCA_EvaluateURLs, 1,
> Action ended 13:31:56: WEBCA_EvaluateURLs. Return value 3.
>
> I hope somebody can help me out with this problem.
>
> Kind regards
> Sven Cipido
>
> *** Sent via Developersdex http://www.develop... ***


Phil Wilson

12/5/2006 6:47:00 PM

0

I'm pretty sure the code that evaluates web urls should not be running at
uninstall time, so I'm wondering if you changed its condition when you went
in there with Orca.

--
Phil Wilson
[Microsoft MVP Windows Installer]

"Sven Cipido" <sven.cipido@ordina.be> wrote in message
news:OEtDts4FHHA.4588@TK2MSFTNGP05.phx.gbl...
>I have created an ASP.Net 2.0 web project. I installed the web
> deployment tool for creating the setup project. Afterwards I created
> the MSI. Then we use ORCA to change a few parameters in the MSI (like
> the target path,.). All this comes together in a kit which is used for
> the installation on our servers.
>
> The installation of the Kit on a Windows 2003 server works fine. When I
> tried to uninstall the application it fails. This is the error I got:
>
> Action start 13:31:55: WEBCA_EvaluateURLs.
> DEBUG: Error 2769: Custom Action WEBCA_EvaluateURLs did not close 1
> MSIHANDLEs.
> The installer has encountered an unexpected error installing this
> package. This may indicate a problem with this package. The error code
> is 2769. The arguments are: WEBCA_EvaluateURLs, 1,
> Action ended 13:31:56: WEBCA_EvaluateURLs. Return value 3.
>
> I hope somebody can help me out with this problem.
>
> Kind regards
> Sven Cipido
>
> *** Sent via Developersdex http://www.develop... ***


sven.cipido@gmail.com

12/12/2006 6:24:00 PM

0

Txs for your help. Sorry I answered a little late.

We have solved the problem. Instead of using a web setup we just use a
standard setup project. The websetup was conflicting with the tivoli
kit. Now our setup just copies the files in the correct directories
and the kit does the rest like setting up the Virtual directory under
IIS.

Sven