regsvr32

Source: Wikipedia, the free encyclopedia.
regsvr32
64-bit
TypeCommand
LicenseWindows: Proprietary commercial software
ReactOS:
GNU General Public License
Websitedocs.microsoft.com/en-us/windows-server/administration/windows-commands/regsvr32

In

64-bit versions of this utility (with identical names, but in different directories).[3] regsvr32 requires elevated privileges.[4]

To be used with regsvr32, a DLL must export the functions DllRegisterServer and DllUnregisterServer.[5]

The regsvr32 command is comparable to ldconfig in Linux.

Example usage

regsvr32 shmedia.dll for registering a file

regsvr32 shmedia.dll /s for registering a file without the dialog box ( silent )

regsvr32 /u shmedia.dll for unregistering a file

regsvr32 shmedia.dll /u /s for unregistering a file without the dialog box ( silent )

If another copy of shmedia.dll exists in the system search path, regsvr32 may choose that copy instead of the one in the current directory. This problem can usually be solved by specifying a full path (e.g., c:\windows\system32\shmedia.dll) or using the following syntax:

regsvr32 .\shmedia.dll

References

  1. ^ "Reactos/Reactos". GitHub. 3 November 2021.
  2. ^ "Regsvr32". TechNet. Microsoft.
  3. ^ How to use the Regsvr32 tool and troubleshoot Regsvr32 error messages:, Microsoft, 14 August 2015. Accessed 2019-02-10.
  4. ^ Regsvr32 - Register a DLL - Windows CMD - SS64.com
  5. ^ "INFO: How Regsvr32.exe Registers and Unregisters COM DLLs". Support. Microsoft. March 24, 2009. Archived from the original on 2015-03-13.

Further reading

External links