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?
|
I have tried to use the following code:
But this is not working for me. How can I register a DLL on Windows 7 with a 64-bit processor? |
||||
|
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." |
|||
|
|
|
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: |
|||
|
|
|
If the DLL is 32 bit: Copy the DLL to C:\Windows\SysWoW64\ if the DLL is 64 bit: Copy the DLL to C:\Windows\System32\ I know it seems the wrong way round, but that's the way it works. See: http://support.microsoft.com/kb/249873
|
|||||||
|
|
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) |
|||
|
|
|
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: |
||||
|
|
|
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:
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 |
|||
|
|
|
Finally I found the solution just run CMD as administrator then write
then write this
I hope that answer will help you |
|||||
|
|
If the DLL is 64 bit:
if the DLL is 32 bit:
|
||||
|
regsvr32, a DLL must export the functionsDllRegisterServerandDllUnregisterServer. There's no register the vast majority of DLLs that you create at all. – Cody Gray Feb 3 '11 at 11:41