About 51 results
Open links in new tab
  1. How do I register a DLL file on Windows 7 64-bit?

    Feb 4, 2011 · 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 file on Windows 7 with a 64-bit processor?

  2. What is REGSVR32? Why do we need it? - Super User

    Jun 30, 2010 · I know it is used to "Register or unregister a DLL". But I want more. Why do we need to register a DLL? When should we register a DLL?

  3. What is the different between /n and /i parameters of RegSvr32.exe?

    Jun 12, 2012 · regsvr32 /i:"Install_1" dllname.dll DllInstall is invoked with bInstall set to TRUE and pszCmdLine set to "Install_1". To uninstall a DLL, use the following: regsvr32 /u /i:"Install_1" …

  4. Unable to register dll using regsvr32 - Stack Overflow

    My project generates a dll and when build in Debug mode the dll gets registered automatically by Visual Studio 2005. But when I try to register the same dll in command prompt using "regsvr32" I'm u...

  5. Using regsvr32 to register 32bit dll on 64bit Win 10

    Jan 26, 2018 · A) regsvr32 32bit.dll (at the folder where 32bit.dll resides in) B) regsvr32 '/path/32bit.dll' (at ~SysWOW64 folder, with correct path for 32bit.dll) I know, many people say you have to be at …

  6. registry - Unregister DLL using regsvr32 - Stack Overflow

    May 13, 2015 · The unregistration code lives in the DLL, unfortunately, so regsvr32 /u blabla.dll won't work; you'll need to manually delete the DLL's information from the Windows registry using regedit.

  7. How to load a DLL with regsvr32 in cmd in Windows 10?

    Oct 20, 2020 · Try this: Start a Command Prompt or PowerShell with admin-rights (needed to register the DLL anyway). Change current directory to the folder where the DLL is located and then run …

  8. Register comdlg32.dll gets Regsvr32: DllRegisterServer entry point was ...

    Dec 18, 2012 · Hence RegSvr32.exe won't work. That's your answer. ComDlg32.dll is a a system component. (exists in both c:\windows\system32 and c:\windows\syswow64) Trying to replace it or …

  9. c++ - REGSVR32: the module "xxxxx.dll" failed to load ... dependent ...

    May 12, 2017 · I've tried placing the *.dll in both, C:/Windows/System32 and C:/Windows/SysWOW64 and attempting to register with "regsvr32 xxxxx.dll" under an elevated command prompt.

  10. windows - RegSvr32 exit codes documentation? - Stack Overflow

    I played with RegSvr32.exe to register a COM Server and got next exit codes: 0 - when registering properly normal DLL Com Server 3 - when try registering fake DLL Com Server (simple text file re...