ASP.NET application uninstall problem help please!!!

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default ASP.NET application uninstall problem help please!!!

    Hi all,
    Not sure if this is the correct Msgboard but here goes
    anyway...

    I have an asp.net application that is installed by a .net
    installation project, pretty simple so far

    The problem comes when i go to uninstall the application,
    The uninstall is deleting DLL's that are required by other
    applications, i need to reference these DLL's within my
    application, so they definitely need to be there but i
    don't want them deleted on uninstall or at very least give
    me the option to say yes or no...

    Has anyone come across this situation or could possibly
    point me in the right direction of a way to mark these
    DLL's as shared and thus not delete them?

    Any Help on this would be much appreicated

    thanks
    Andy
    Andy Guest

  2. Similar Questions and Discussions

    1. Contribute 3 Uninstall Problem
      I have uninstalled Contribute 3 from my laptop. However, now whenever I try to delete a file, for instance from "My Documents," immediately upon...
    2. Uninstall Problem with Flash Player 8
      Hi All, I have recently downloaded the Complete Standalone Installer for Flash Player 8 from http://www.softwarepatch.com/internet/flash.html. ...
    3. Fireworks uninstall problem
      Hello, Can you give us more details of your machine? What OS are you in? Version of Fireworks? Ram etc... I hope this helps. Anthony F....
    4. problem with Firework 2004 uninstall
      Hello, I've installed the new Fireworks and Dreamweaver 2004. I made a quick decision to keep the good old MX for a while (principal reason -...
    5. uninstall problem
      I have both version 7 and version 6 on my pc. I want to uninstall version 6, but when I go to add/remove programs and try to uninstall, I get an...
  3. #2

    Default Re: ASP.NET application uninstall problem help please!!!

    A couple of ways to approach this.

    1. Take the required assemblies out of your project and have them
    bootstrapped so they install if not installed. This will help in many
    situations.
    2. Install these assemblies through a custom installer class. The help
    topics under "Deploying .NET Applications: Lifecycle Guide" should help you
    build one. The custom installer methods to remove the app can be flagged to
    avoid these assemblies.

    I assume you are placing the assemblies in the GAC, so they are shared in
    one location. If so, another option is to install the assemblies once for
    each project. It will take up a small amount of disk space, but solve the
    problem. It is not applicable for all applications, so it is just one
    suggestion.

    --
    Gregory A. Beamer
    MVP; MCP: +I, SE, SD, DBA
    Author: ADO.NET and XML: ASP.NET on the Edge

    ************************************************** **************************
    ****
    Think Outside the Box!
    ************************************************** **************************
    ****
    "Andy" <a_wood20@hotmail.com> wrote in message
    news:0ac701c34bab$eb8a5c30$a601280a@phx.gbl...
    > Hi all,
    > Not sure if this is the correct Msgboard but here goes
    > anyway...
    >
    > I have an asp.net application that is installed by a .net
    > installation project, pretty simple so far
    >
    > The problem comes when i go to uninstall the application,
    > The uninstall is deleting DLL's that are required by other
    > applications, i need to reference these DLL's within my
    > application, so they definitely need to be there but i
    > don't want them deleted on uninstall or at very least give
    > me the option to say yes or no...
    >
    > Has anyone come across this situation or could possibly
    > point me in the right direction of a way to mark these
    > DLL's as shared and thus not delete them?
    >
    > Any Help on this would be much appreicated
    >
    > thanks
    > Andy

    Cowboy \(Gregory A. Beamer\) Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139