472,791 Members | 2,121 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,791 software developers and data experts.

installer woes (MSI generated by VS.NET 2003)

I'm having some inconsistency problems with my deployment project ("Setup")
and its custom actions ("Installer"). I'm using Visual Studio .NET 2003
(.NET 1.1, no service pack) on Windows XPSP1.

My main project is a band object (Explorer Bar) in an assembly (.DLL) that
needs to be registered on installation and unregisted on uninstallation. In
addition, during installation, Setup creates registry subkeys, sets registry
values, installs some application files, and adds a new file-type. On
uninstallation, Setup is supposed to undo all of that. More specifically, I
have custom actions for Setup that are run within the Installer class. The
Installer class is within the main assembly, and perhaps surprisingly, that
seems to work, some of the time. I have also tried putting the Installer
class in its own assembly, both as a class library and as a console
application, and that doesn't seem to work any better than having the
Installer class in the main assembly. Sometimes the registration or
unregistration of the main assembly fails. The workaround we tell our users
(a small userbase so far, fortunately) is to "repair" after installation, or
to uninstall completely before installing a new version. Neither are as
ideal as being able to simply install over the previous version. I think
there are two subproblems.

1) The Uninstall custom action in the Installer class isn't always called.
This is especially inconsistent. My Installer class overrides
OnBeforeUninstall() [so that the main assembly is unregistered before the
files are removed] and Uninstall() [so that savedState is empty, in order
for the installState to be removed]. Lacking better debugging tools for
MSIs, I added code in these methods to set registry entries containing the
timestamp at the beginning and end of each of these methods. I verified
that usually the Uninstall custom action is (but not always) called when the
user explicitly asks to remove the package (via "Add/Remove Programs"), but
when the user is installing over a previous version, sometimes (but not
always) the Uninstall custom action is called. As a side note, I change the
installer version, PackageCode, and ProductCode whenever I build a new
installer. I don't understand why these inconsistencies occur. For a while
I thought VS.NET might randomly corrupt the Setup.vdproj file and that I'd
have to remove and add the custom actions again, in order to be sure that
the Uninstall custom action was registered, and once or twice I built the
Setup.vdproj file from scratch, fearing general corruption in the file. This
seemed to help (especially the latter), but not for too long, and it's not a
sustainable solution, even if it's not a placebo. In addition, which may or
may not be related, the Setup.MSI doesn't seem to always uninstall all
registry entries, and because of that, I've had to add a few lines to my
Uninstall custom action. It doesn't seem right to me that the MSI would
sometimes not uninstall registry entries that it added in the first place.

2) The second subproblem is more specific to my project, and this occurs
sometimes when I'm registering the main assembly. The main assembly is
registered in the overridden OnCommitted() method of the Installer class,
presumably after the previous version's main assembly was unregistered in
the OnBeforeUninstall() method. In the case where the previous version and
the new version were installed in the same "Program Files" folder, the
assembly containing the Installer class will have the same exact CodeBase,
but they'll of course have a different FullName because the assembly version
has been automatically incremented. It seems that sometimes the Commit
custom action will re-register the old assembly instead of registering the
new assembly. My registration code looks like this:
RegistrationServices rs = new RegistrationServices();
rs.RegisterAssembly(MyAssembly, AssemblyRegistrationFlags.SetCodeBase);
and my unregistration code looks like this:
RegistrationServices rs = new RegistrationServices();
rs.UnregisterAssembly(MyAssembly);
MyAssembly is defined as a property:
Assembly MyAssembly
{
get
{
return Assembly.LoadFile(InstallDirectory + "assembly.dll");
}
}
I used to use Assembly.Load(path) instead, but it seemed that
Assembly.LoadFile(path) worked better. My concern is that either the
Uninstall and Commit custom actions share an AppDomain, so sometimes
MyAssembly might return the previous assembly during the Commit phase if the
previous assembly wasn't somehow still in Commit's AppDomain after Uninstall
finished. I tried creating a temporary AppDomain and then loading the
assemblies within that, but it threw a deserialization exception. I suppose
the overall issue of this subproblem is that I'm trying to register and
unregister assemblies without knowing the FullName of either assembly, as
I'm trying to semi-automate the build process and stay within VS.NET as much
as possible (for now).

I know these are complex and possibly peculiar problems! While I'd love for
someone to post a solution for either (or both!) subproblems, at the very
least, I'd appreciate hearing tips regarding debugging deployment projects
and custom installation classes, similar stories of installer woes and
solutions, and recommendations for possibly better installation/deployment
tools than VS.NET's deployment projects. Something like InstallShield seems
like overkill, but maybe it's what I need to have dependable installations.

Thanks for reading this far!
Arun
Jul 21 '05 #1
0 1989

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Luke Wright | last post by:
Hi, I have built a setup project to install an application I am developing. I would like to be able to prompt the user whether to install Shortcuts in the following locations: * Start Menu *...
4
by: Bill Murray | last post by:
I am using VS.NET 2003 and trying to deploy a service program(c++) to a Windows 2000 Server system. I have also written a small DLL (USSsetup.dll) that is used to start/stop the service using a...
5
by: Arun Bhalla | last post by:
I'm working with VS.NET 2003 and .NET 1.1 (not SP1) on Windows XP SP1. My application is using the Windows Installer Bootstrap. (I may have also installed a module which detects requirements (.NET...
4
by: db_from_mn | last post by:
Using Visual Studio, 2003: When I create a deployment project and try to install it, I get Installer Error 2705: Invalid Table, Could not be linked as tree. How can I debug this? It seems that I...
2
by: Lauren Wilson | last post by:
Hi folks, I am confused about how to create a stand alone installer to install Access 2003 Runtime. There are two files I have compiled into a self-extracting zip file: ACCESSRT.CAB...
0
by: Arun Bhalla | last post by:
I'm having some inconsistency problems with my deployment project ("Setup") and its custom actions ("Installer"). I'm using Visual Studio .NET 2003 (.NET 1.1, no service pack) on Windows XPSP1. ...
10
by: Lauren Wilson | last post by:
I have a desperate short term need for a way to install Access 2003 runtime on client computers. I have the proper license to do so but I cannot seem to find the files to do it like we did with...
3
by: david | last post by:
Greetings, I'm doing some modifications of an existing Visual Studio .NET 2003 C# project that is to be deployed as a windows service. The solution includes a project that builds an MSI file. ...
1
by: MimiMi | last post by:
I have a deployment project that was originally created in VS2003. Since I don't have VS2003, I now open it in VS2005, but then of course VS2005 has to convert it. Everything seems to work fine. I...
3
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: erikbower65 | last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA: 1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
0
by: kcodez | last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Sept 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
14
DJRhino1175
by: DJRhino1175 | last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this - If...
0
by: Rina0 | last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
5
by: DJRhino | last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer) If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _ 310030356 Or 310030359 Or 310030362 Or...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
0
by: lllomh | last post by:
How does React native implement an English player?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.