Results 1 to 4 of 4

Thread: Windows installer internal error 2762

  1. #1
    Join Date
    Apr 2009
    Posts
    50

    Windows installer internal error 2762

    When running an installation, i have occur following error message : Error 2762: Cannot write script record. Transaction not started. i have tried several times but this Windows installer error repeating. how to solve this ?please help
    thank you

  2. #2
    Join Date
    Aug 2007
    Posts
    1,098

    Re: Windows installer internal error 2762

    The 2762 error can be occur due to Custom Action which is get as running and that Action does not initialize and complete in the InstallExecute sequence.There can be a problem with scheduling a custom action during Script processing.

  3. #3
    Join Date
    Jan 2008
    Posts
    3,755

    Re: Windows installer internal error 2762

    Usually that your InstallExecuteSequence table isn't authored correctly. Actions that generate script opcodes have to be sequenced between InstallInitialize & InstallFinalize. Validation will catch this quite often (Orca's Tools menu has this option & cmd line version is msival2)

    CustomAction table:

    CA_CommitHelpTransactionNoRB.3643236F_FC70_11D3_A536_0090278A1BB8 3137 BIN_File_46001 CommitTransaction

    InstallExecuteTable:

    InstallInitialize 3000
    InstallFinalize 8100
    CA_CommitHelpTransactionNoRB.3643236F_FC70_11D3_A536_0090278A1BB8 ( RollbackDisabled ) 8101

    In this case, there is a custom action of type 3137 = 0xc41 = 0x800 + 0x400 + 0x40 + 0x1

    0x800 = msidbCustomActionTypeNoImpersonate
    0x400 = msidbCustomActionTypeInScript
    0x40 = msidbCustomActionTypeContinue
    0x1 = msidbCustomActionTypeDll
    A deferred custom action was not sequenced between InstallInitialize and InstallFinalize.

    blogs.msdn.com

  4. #4
    Join Date
    May 2008
    Posts
    4,345

    Re: Windows installer internal error 2762

    This error results on Windows XP machines if the standard actions MsiPublishAssemblies and MsiUnpublishAssemblies are not included in the Execute sequence.where custom action with improper sequence can be troble. check for file is configured not incorrectly which you want to customize 4 another thing can be MSXML files which already installed by default on the Windows XP operating system, which provide error message.

Similar Threads

  1. Windows installer error
    By herself in forum Windows Software
    Replies: 2
    Last Post: 12-12-2011, 04:10 AM
  2. Replies: 6
    Last Post: 13-03-2011, 05:10 PM
  3. Windows SP3 Internal Error
    By rushabh62 in forum Windows Software
    Replies: 2
    Last Post: 18-03-2010, 07:38 PM
  4. Replies: 4
    Last Post: 15-11-2008, 10:45 AM
  5. Windows Installer Error
    By Breckon in forum Windows XP Support
    Replies: 3
    Last Post: 06-10-2008, 05:16 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,518,521.42463 seconds with 17 queries