Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have tried to use the following code:

cd c:\windows\system32
regsvr32.exe dllname.ax

But this is not working for me. How can I register a DLL on Windows 7 with a 64-bit processor?

share|improve this question
Seeing as this question is tagged "vb.net", I have to wonder why you're trying to register a DLL you created in VB.NET. To be used with regsvr32, a DLL must export the functions DllRegisterServer and DllUnregisterServer. There's no register the vast majority of DLLs that you create at all. – Cody Gray Feb 3 '11 at 11:41
4  
What do you mean by doesn't work or isn't useful? Do you get an error message? What does it say? – Cody Gray Feb 4 '11 at 12:08

8 Answers

up vote 8 down vote accepted

Type "regsvr32 name.dll" into the Command Prompt and press "Enter." Note that "name.dll" should be replaced with the name of the DLL that you want to register. For example, if you want to register the iexplore.dll, type "regsvr32 iexplore.dll."

share|improve this answer
i used samething then also it's giving error message – Rajkumar Reddy Feb 4 '11 at 12:07

Well, you don't specify if it's a 32 or 64 bit dll and you don't include the error message, but I'll guess that it's the same issue as described in this KB article: Error Message When You Run Regsvr32.exe on 64-Bit Windows

Quote from that article:

This behavior occurs because the Regsvr32.exe file in the System32 folder is a 64-bit version. When you run Regsvr32 to register a DLL, you are using the 64-bit version by default.

Solution from that article:

To resolve this issue, run Regsvr32.exe from the %SystemRoot%\Syswow64 folder. For example, type the following commands to register the DLL:
cd \windows\syswow64
regsvr32 c:\filename.dll

share|improve this answer

If the DLL is 32 bit:

Copy the DLL to C:\Windows\SysWoW64\
In elevated cmd: %windir%\SysWoW64\regsvr32.exe %windir%\SysWoW64\namedll.dll

if the DLL is 64 bit:

Copy the DLL to C:\Windows\System32\
In elevated cmd: %windir%\System32\regsvr32.exe %windir%\System32\namedll.dll

I know it seems the wrong way round, but that's the way it works. See:

http://support.microsoft.com/kb/249873
Quote: "Note On a 64-bit version of a Windows operating system, there are two versions of the Regsv32.exe file:
The 64-bit version is %systemroot%\System32\regsvr32.exe.
The 32-bit version is %systemroot%\SysWoW64\regsvr32.exe.
"

share|improve this answer
1  
+1 for "I know it seems the wrong way round, but that's the way it works" with link to support.microsoft.com... w/o the link it's hard to believe. – Trevor Boyd Smith Mar 6 at 22:06
great this has solved the issue!! – Davide Piras Apr 8 at 9:41

on a x64 system

system32 is for the 64bit and syswow64 is for 32bit (not the other way around as stated above) WOW (windows on windows) is the 32 bit subsystem that runs under the 64 bit subsystem)

it's a mess in naming terms, and serves only to confuse, but that's the way it is

again ... syswow64 is 32bit NOT 64bit

system32 is 64bit NOT 32bit

there is a regsrv32 in each of these directories. one is 64bit the other 32. same deal with odbcad32 and et al. (if you want to see 32bit odbc drivers with won't show up with the default odbcad32 in system32 which is 64bit)

share|improve this answer

Open the start menu and type cmd into the search box Hold Ctrl + Shift and press Enter

This runs the Command Prompt in Administrator mode.

Now type: regsvr32 MyComobject.dll

share|improve this answer

Knowing the error message would be rather valuable. It is meant to provide info, even though it doesn't make any sense to you it does to us. Being forced to guess, I'd say that the DLL is a 32-bit DirectX filter. In which case this should be the proper course of action:

cd c:\windows\syswow64
move ..\system32\dllname.ax .
regsvr32.exe dllname.ax

This must be run at an elevated command prompt so that UAC cannot stop the registry access that's required. Ask more questions about this at superuser.com

share|improve this answer

Finally I found the solution just run CMD as administrator then write

cd \windows\syswow64

then write this

regsvr32 c:\filename.dll

I hope that answer will help you

share|improve this answer
This was the only solution that worked for me. – northpole Nov 15 '12 at 14:24
If you have already copied the filename.dll to the syswow64 folder, and you change working directory to syswow64 in command prompt, then the "c:\" in "regsvr32 c:\filename.dll" is not necessary. In short, "regsvr32 c:\filename.dll" should read "regsvr32 filename.dll" – jpm0004 Jan 19 at 22:51

If the DLL is 64 bit:

  1. Copy the DLL to C:\Windows\SysWoW64\
  2. In elevated cmd: %windir%\SysWoW64\regsvr32.exe %windir%\SysWoW64\namedll.dll

if the DLL is 32 bit:

  1. Copy the DLL to C:\Windows\System32\
  2. In elevated cmd: %windir%\System32\regsvr32.exe %windir%\System32\namedll.dll
share|improve this answer
This isn't actually correct, see my answer further up... the "If the DLL is 64-bit" and "if the DLL is 32-bit" need reversing... – Liam Apr 18 at 9:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.