Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Results 1 to 2 of 2
  1. #1
    Join Date
    May 2008
    Posts
    13

    Error in dosnet20_include dependency check

    In MSI Factory v2.1.1000.0 the dotnet20_include.lua that gets installed with MSIF seems to have a bug. It *checks* for Windows Installer 3.1, but posts a message stating Windows Installer 3.0 is required (see code snippet below). Is this fixed in the latest version?

    Thanks.


    ===============================================
    -- need MSI 3.1
    if (String.CompareFileVersions(strMSIVersion,"3.1.400 0.2435") == -1) or (not strMSIVersion) then
    -- MSI 3.1 is not installed
    bRequirementFail = true;
    strTemp = Application.GetLocalizedString("DOTNET20_FAIL_MSI3 0");
    Table.Insert(tbRequirementFailStrings, Table.Count(tbRequirementFailStrings) + 1, strTemp);
    end

  2. #2
    Join Date
    Aug 2008
    Posts
    30
    DOTNET20_FAIL_MSI30 is a XML variable that is replaced with the text "The .NET 2.0 runtime module requires Windows Installer 3.0. Please install this technology then run the setup again" when the windows installer 3.1 requirement fails. If you look up the file English.xml (in dotnet20_Include folder) you will see all the variables and their string values. If you want you can edit the file and change DOTNET20_FAIL_MSI30 in the English.xml to DOTNET20_FAIL_MSI31 and then update all DOTNET20_FAIL_MSI30 references to DOTNET20_FAIL_MSI31 in dotnet20_include.lua script file.

    This is not a bug or anything. There is nothing to be fixed. All that is being done here is to use a variable DOTNET20_FAIL_MSI30 to inform the user that windows 3.x needs to be already installed on Windows 2000 or later OS prior to installing .Net 2.0.

    Hope this helps.
    Last edited by venky; 08-14-2008 at 08:30 PM.

Similar Threads

  1. Dependency Module: Microsoft .NET Framework 2.0
    By Adam in forum Setup Factory 8.0 Examples
    Replies: 30
    Last Post: 11-20-2009, 08:27 PM
  2. Dependency Module: Microsoft .NET Framework 1.1
    By Darryl in forum Setup Factory 8.0 Examples
    Replies: 12
    Last Post: 06-10-2008, 02:26 AM
  3. .NET 1.1 Dependency Script Questions
    By drpepper in forum Setup Factory 7.0
    Replies: 1
    Last Post: 01-03-2006, 02:04 PM
  4. WMV dependency check
    By Protocol in forum AutoPlay Media Studio 6.0
    Replies: 5
    Last Post: 11-11-2005, 03:31 PM
  5. Problems with Acrobat Dependency Check
    By eric_darling in forum AutoPlay Media Studio 5.0
    Replies: 65
    Last Post: 07-20-2005, 02:35 PM

Posting Permissions

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