Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

FATAL: Could not find component we just installed

I have to do a modification on an old COM+ app written in C# 2.0. But when I try to register the DLL on a windows server 2008 machine with 'regsvcs excelserver.dll', I get the error:

  The following installation error occurred: 
  1: FATAL: Could not find component 'Excelserver.CExcelManager' we just installed

I tried to run in as admin, and turned off UAC, but it doesn't make a difference.

If I try it on a windows 7 or windows server 2003 machine, it works.

Any ideas why this doesn't work on a windows server 2008 machine? It seems I don't find any additional logging in the event log.

Thanks, L

like image 824
L-Four Avatar asked Jan 02 '12 12:01

L-Four


1 Answers

You need to register using the 64-bit version of regsvcs instead of the 32-bit version.

like image 176
Gabriel Lozano-Moran Avatar answered Sep 22 '22 09:09

Gabriel Lozano-Moran