The DLLregisterServer entry point not found. How do I fix it?

Asked By 80 points N/A Posted on -
qa-featured

Hi Brainy,

When I try to register a plugin in windows operating system using the command prompt as administrator, I go this error message pop up message. For your information, I have windows operating system 32-bit and 500 GB hard disk. The error says the DLLregisterServer entry point not found. How do I fix it? Please help.

 

RegSvr32

Sap 2000Plugin_CSI_Sample1.dll was loaded, but the DLLRegisterServer entry point was not found. This file cannot be registered. 

SHARE
Answered By points N/A #168700

The DLLregisterServer entry point not found. How do I fix it?

qa-featured

Regsvr32 can only run if it is executed from an elevated command prompt. Also, it can only register COM libraries that are designed to be linkable dynamically.

Start Command Prompt, type the following command:

Regasm “mydll.dll”

Here, change the path of “mydll.dll” with the path of your DLL file.

Also, you have to take the ownership of a registry key. Start Registry Editor, navigate to the following registry section:

HKEY_CLASSES_ROOTTypeLib

Now, take the ownership of the registry section. Then, run the commands to register the DLL file. Learn how to take the ownership of a registry key.

Related Questions