Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3225620
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T16:21:37+00:00 2026-05-17T16:21:37+00:00

I have a Windows installer project which includes a custom action. This custom action

  • 0

I have a Windows installer project which includes a custom action. This custom action uses SMO to configure a databse. The installer project is .Net 4. When executing the custom action, I get the following error:

    Mixed mode assembly is built against version 'v2.0.50727' of the runtime 
and cannot be loaded in the 4.0 runtime without additional configuration information.

I could run the database update code in a separate executable or rewrite the custom action so SMO is not used but I’d rather keep the code as it is if possible.

I know how to fix this in console and Winforms apps by adding the following to the app.config file.

<?xml version="1.0"?>
<configuration>
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
  </startup>
</configuration>

The question is how on earth do I do this or something similar with an installer project? I still get this issue when all the referenced assemblies in the custom action are frame work 2 so it must be caused by the MSI itself which is .net4 according to the Fusion Log Viewer.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T16:21:38+00:00Added an answer on May 17, 2026 at 4:21 pm

    In the end I decided to launch a concole app from the installer’s custom action to do the necessary updates to the databse. It works well

    the code is to call the console app from the installer is :

    public enum ReturnCode
    {   
        Error = -1,
        Updated = 0,
        UpdateNotRequired = 1,
        ServerNotAvailable = 2,
        DatabaseNotAvailable = 3
    }
    
    private int UpdateSchema(string installationPath)
    {
        const string exeName = @"SchemaUpdater";
    
        string executablePath = Path.Combine(installationPath, exeName);
    
        LogModule.Log_NewLogEntry("Starting Schema Updater");
    
        var myProcessStartInfo = new ProcessStartInfo(executablePath);
        myProcessStartInfo.UseShellExecute = false;
        myProcessStartInfo.CreateNoWindow = true;
    
        Process process = Process.Start(myProcessStartInfo);
        process.WaitForExit();
    
        int exitCode = process.ExitCode;
    
        LogModule.Log_NewLogEntry(string.Format("SchemaUpdate returned {0}", exitCode));
    
        return exitCode;
    }
    
    public override void Install(IDictionary stateSaver)
    {
        string installationPath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
    
        int dbUpdaterReturnVal = UpdateSchema(installationPath);
    
        if (dbUpdaterReturnVal < 0)
        {
            throw new Exception("Schema Update returned with an error");
        }
    
        if (dbUpdaterReturnVal == (int)ReturnCode.ServerNotAvailable)
        {
            throw new Exception("SqlServer Not available. Aborting Install");
        }
    
       base.Install(stateSaver);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a windows installer project which installs some software (winform, service, mce addin).
I have been made a windows service.in which i have been added project installer.in
I have a project which includes 2 windows services. I create a ProjectInstaller to
I have a system which includes an installer, a windows service and a configuration
I have an install project which has a custom action that executes a VBScript
I have a windows installer (MSI) project. I want to ensure that when i
I have a Windows Installer (VS 2008) project and I want to create a
I have a project where I create WiX (Windows Installer for XML) files, when
I'm coming at this from the Windows world... On Windows, we have Windows Installer
I've got a WiX installer project which uses MSBuild to generate the MSI file.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.