REGSVR32
Register or unregister a DLL.
Syntax REGSVR32 [/U] [/S] [/C] [/I:[Command_Line]] DLL_Name REGSVR32 [/U] [/S] [/C] /N /I:[Command_Line] DLL_Name
Key /u Unregister Server. /s Silent - no dialogue boxes. /c Console output. /n Don't call DllRegisterServer /i Call DllInstall (or DllUninstall if /u is specified) Command_Line An optional command line for DllInstall
Examples
Unregister (disable) XP Zip folders
REGSVR32 /u C:\Windows\System32\zipfldr.dll
Unregister (Disable) CAB file viewer:
REGSVR32 /u C:\Windows\System32\cabview.dll
Register (enable) XP Zip folders
REGSVR32 zipfldr.dll
Register (enable) CAB file viewer:
REGSVR32 cabview.dll
Register Windows Update DLLs (for those times when XP repair breaks Windows Update)
regsvr32 /s wuapi.dll
regsvr32 /s wuaueng1.dll
regsvr32 /s wuaueng.dll
regsvr32 /s wucltui.dll
regsvr32 /s wups2.dll
regsvr32 /s wups.dll
regsvr32 /s wuweb.dll
Register DAO 3.6 (Data Access Objects):
REGSVR32 "C:\Program Files\Common Files\Microsoft Shared\DAO\DAO360.DLL"
It costs nothing to register and will only take a moment...
Related Commands:
Delsrv - unregister a service with the Services Control Manager. (Win 2K ResKit)
MSIEXEC - Microsoft Windows Installer
RUNDLL32 - Run a DLL command
Microsoft DLL Database - which software installed a specific version of a DLL
Q249873 - Regsvr32 usage and error messages
'COM, ATL' 카테고리의 다른 글
HRESULT (2) | 2008.08.13 |
---|---|
컴포넌트 관련 define 문 (0) | 2008.08.13 |
Silan Liu의 COM과 ATL.html (0) | 2008.08.13 |
COM 기본 개념 ~~ 정리해 보자 (0) | 2008.08.08 |
Process/Thread/Apartment (0) | 2008.08.02 |
How to Use IMessageFilter (1) | 2008.08.02 |
Single Threaded Apartment(STA)에서 고려해야 할 몇가지 것들 (0) | 2008.08.02 |