Activation with System.Runtime.InteropServices.COMException

0

Activation with System.Runtime.InteropServices.COMException causes the following error. A summary of the errors and details of these errors are listed later in the log...

Activation of C:\Documents and Settings\MCIS\Desktop\Sanjivini\2.7\SanjiviniCommonApp.application resulted in exception. Following failure messages were detected:
+ Failed to load the runtime. (Exception from HRESULT: 0x80131700)

c#
asked on Stack Overflow Nov 26, 2012 by user1628121 • edited Nov 13, 2013 by Peter Mortensen

1 Answer

1

ClickOnce needs the correct version of the .NET runtime in order to run the application. Check these items:

  • That the .NET runtime is installed on the client computer (newest .NET runtime)
  • That you have the correct version of .NET runtime (4.0, 3.5 SP1, etc.)
  • If the computer / Windows version is 32-bit (x86), check that the application isn't compiled to run only on 64-bit (x64).
answered on Stack Overflow Nov 26, 2012 by Amitbe • edited Nov 13, 2013 by Peter Mortensen

User contributions licensed under CC BY-SA 3.0