对于那些可以自行注册的对象链接和嵌入 (OLE) 控件,例如动态链接库 (DLL) 文件或 ActiveX 控件 (OCX) 文件,您可以使用 Regsvr32 工具 (Regsvr32.exe) 来将它们注册和取消注册。& G- N+ |3 q! r. g; H
* t( {0 y! w; r" A [
Regsvr32.exe 的用法 1 a- D/ Y2 m$ m
9 V- U. |7 g) lRegSvr32.exe 具有以下命令行选项: Regsvr32 [/n] [/i[:cmdline]] dllname
u) h& y7 U9 w O, Y4 Z7 Z$ I, \ {& @7 z N
/u - Unregister server<BR/> 0 m; K" u3 J: l& L
/i - Call DllInstall passing it an optional [cmdline]; 5 s5 U( t; l/ S% ~$ O
when used with /u calls dll uninstall
|! x! t- y) ~7 x /n - do not call DllRegisterServer; this option must 1 T2 I Q2 u ^, S, {
be used with /i
5 w+ q% U. l/ H2 t( z2 ]: b- d# a) E# T7 {! r( {* A
当您使用 Regsvr32.exe 时,它会尝试加载该组件并调用它的 DLLSelfRegister 函数。如果此尝试成功,Regsvr32.exe 会显示一个指示成功的对话框。如果此尝试失败,Regsvr32.exe 会返回一条错误消息,其中可能会包括一个 Win32 错误代码。要查看 Win32 错误代码的列表,请参见下面的 Microsoft Web 站点: 6 p; V# O2 r* S6 E( b' z
http://msdn.microsoft.com/librar ... n32_error_codes.asp
& B# z. K( E) a2 K, k" c$ h( c+ M" c0 d8 [
例如,要手动注册 Sample.ocx ActiveX 控件,请在 MS-DOS 提示符处键入以下命令: / k s8 E& q! i) f
c:\regsvr32.exe sample.ocx 8 h8 T9 @, w M& o! \! ^5 N& ]# W
1 L2 p8 g$ L3 z7 ^) p7 g9 t6 VRegsvr32.exe 错误消息 ( Y1 T, d6 v: k6 Q+ e3 r0 W( N; }
# Q1 B/ B0 u" R以下列表介绍了 RegSvr32 错误消息和可能的原因。
0 E% B4 ^5 c: s* r( J) @: }7 ?$ t! K, ?9 E. \
Unrecognized flag:/invalid_flag 1 ?' R* A, h' v$ m! c$ A8 A7 o
6 \8 U3 c4 c4 k% B4 g$ ~' ^键入的标志或开关组合无效(请参阅本文中的“Regsvr32.exe 的用法”一节)。 7 r6 n6 ]2 ~- e' j
( q" {6 e1 b+ V) dNo DLL name specified.
6 H2 i0 Z6 o1 o- x
" |* _; K3 |! t# N4 R5 S/ ?. ?! t" V未包括 .dll 文件名(请参阅本文中的“Regsvr32.exe 的用法”一节)。
6 Z+ D2 v% p) O4 k
; a* K; n% J* k& K7 i! i1 w# HDllname was loaded, but the DllRegisterServer or DllUnregisterServer entry point was not found. , b' D# j. Z* s" L
# i3 x. ]; `- F/ U/ n& v, eDllname 不是 .dll 或 .ocx 文件。例如,键入 regsvr32 wjview.exe 就会生成该错误消息。 K7 U c+ z' m4 S s) U5 c
6 \7 d5 e% c) \' L$ U; ]Dllname is not an executable file and no registration helper is registered for this file type.
# S. m4 k4 y4 c& H& b
9 d3 F3 n5 L$ R7 c1 _( h- bDllname 不是可执行文件(.exe、.dll 或 .ocx)。例如,键入 regsvr32 autoexec.bat 就会生成该错误消息。
6 r8 u& I, f, Z% W* Z6 _) C7 @) k0 c$ D- l
Dllname was loaded, but the DllRegisterServer or DllUnregisterServer entry point was not found.
8 G! A1 `; i0 a* [6 M$ I @2 h9 b5 T, a1 M z6 A# F" C
Dllname 可能未导出,或者内存中可能有损坏的 Dllname 版本。请考虑使用 Pview 来检测该文件并删除它。 ; W& U2 }* A) j' U* e
7 I8 h; m; k. A1 E8 ^Dllname is not self-registerable or a corrupted version is in memory. + P) f C" B. d7 M6 M6 L* }* A
+ k1 B* M C# |例如,键入 regsvr32 icwdial.dll 后就会返回该错误消息,因为 Icwdial.dll 文件不能自行注册。如果您怀疑内存中有损坏的 Dllname 版本,请尝试重新启动计算机,或重新提取该文件的原始版本。如果您运行的是 Windows NT,可能需要使用 Microsoft Windows NT Server 4.0 资源工具包 中的 Kill 或 Pview 工具。有关其他信息,请单击以查看以下 Microsoft 知识库文章: 9 ~- @: P9 f! U T% }0 T
197155 如何终止孤立进程
8 y! L' P( [4 t1 A
( t' x0 V# U7 [# r7 n) [OleInitialize failed (or OleUninitialize failed).
! ~$ k ?6 m) }! ]' _- w' r
3 N+ d/ y/ |- |+ g( J9 N" ORegsvr32 必须先初始化 COM 库,然后才能调用所需的 COM 库函数并在关闭时撤消对该库的初始化。如果对 COM 库进行初始化或撤消初始化的尝试失败,就会出现这些错误消息。例如,Ole32.dll 文件可能已经损坏,或者其版本有误。
- v/ Q8 q% o$ g) d9 Z; H \$ V! T! O
" D' ~3 o' Y( \' A5 {LoadLibrary("Dllname") failed.GetlastError returns 0x00000485
/ M3 ]4 D! ?/ k- q5 p6 y2 \& N/ M8 E# o5 c# B
在 Winerror.h 中,0x00000485 = 1157 (ERROR_DLL_NOT_FOUND),表示“找不到运行该应用程序所需的某个库文件”。例如,键入 regsvr32 missing.dll 后,如果找不到 Missing.dll 文件,就会返回该错误消息。
; n7 y- t, h2 i+ x5 B- Q$ Z, g
t2 G. g7 w- B; dLoadLibrary("Dllname") failed.GetLastError returns 0x00000002
x9 {9 S# s! _& B4 E. F( @- q: Z( ~- S5 y
在 Winerror.h 中,0x00000002 = 2 (ERROR_FILE_NOT_FOUND),表示“系统找不到指定的文件”。换言之,系统找不到相关的 DLL。例如,如果键入 regsvr32 icwdial.dll,而此时缺少 Tapi32.dll(依赖项),就会返回该错误消息。 8 \5 v: w( q$ K5 w# c# X' b0 |
0 y3 }$ F5 I' c# Z: VLoadLibrary("dskmaint.dll") failed.GetLastError returns 0x000001f , S/ ^( I( z8 V" d
+ n7 T/ A2 O% B4 c在 Winerror.h 中,0x000001f = 31 (ERROR_GEN_FAILURE),表示“附加到系统上的设备不能正常工作”。如果您尝试注册 Win16 .dll 文件,就会发生此现象。例如,键入 regsvr32 dskmaint.dll 会返回该错误消息。 . g' s* u. T4 M' z2 C1 B
* y2 j# a, _* y# c; _ PDllRegisterServer (or DllUnregisterServer)in Dllname failed.返回代码是:字符串 . F) N' m2 l2 V. P
* W& U/ P/ k) b* l S: F9 _8 I在 Winerror.h 中搜索字符串。
' l' D; H" O: _6 f3 D2 MRegsvr32.exe 和依赖项 " w1 r5 P4 ]" [+ O) a
RegSvr32.exe 依赖于 Kernel32.dll、User32.dll 和 Ole32.dll 文件(在 Windows NT 中,还依赖于 Msvcrt.dll 和 Advapi32.dll 文件)。Regsvr32.exe 会加载您尝试注册或撤消注册的文件及其所有依赖项。如果缺少必需的文件或者它们已损坏,该进程可能会失败。 * }3 B3 i/ X+ w$ ? V4 }* Z
6 N2 v5 v0 ^ U- V* x+ z/ _1 B
您可以使用 Depends.exe 来确定您尝试注册或撤消注册的文件的依赖项。在 Microsoft Windows 98 资源工具包 和 Microsoft Windows NT 4.0 资源工具包 支持工具中都提供了 Depends.exe。
+ e" Q$ L; ?9 M2 G! {247024 Tools Included with the Microsoft Windows 98 Resource Kit |