Windows 10 regsvr32 命令详解


regsvr32 用于将 .dll 文件注册作为注册表命令组件。

另请参阅: reg     regEdit

基本用法     详细用法

regsvr32 **.dll
			

基本语法

regsvr32 [/u] [/s] [/n] [/i[:cmdline]] <dllname>
			

选项参数

参数 EN 解释 中文翻译 备注
default Register server calling DllRegisterServer. 注册服务器调用 DllRegisterServer。
/u Unregisters server calling DllUnregisterServer. 注销服务器调用 DllUnregisterServer。
/s Silent; display no message boxes. 沉默的; 不显示消息框。
/n

Do not call DllRegisterServer or DllUnregisterServer;

This option must be used with /i.

不调用 DllRegisterServer 或 DllUnregisterServer;

此选项必须与 /i 一起使用。

/i:<cmdline>

Used without /u, calls DllInstall(TRUE, [cmdline]) to install the dll, after a successful call to DllRegisterServer.

Used with /u, calls DllInstall(FALSE, [cmdline]) to uninstall the dll and DllUnregisterServer if DllInstall was successful.

在不使用 /u 的情况下,在成功调用 DllRegisterServer 后调用 DllInstall(TRUE, [cmdline]) 安装 dll。

与 /u 一起使用,调用 DllInstall(FALSE, [cmdline]) 卸载 dll 和 DllUnregisterServer 若 DllInstall 成功。

<dllname>

The path (absolute or relative) to the DLL to call the entry points on.

This DLL is required to export the entry points that will be called depending on the selected option (DllRegisterServer, DllUnregisterServer and/or DllInstall).

调用入口点 DLL 路径 (绝对或相对)。

要求此 DLL 根据选中选项 (DllRegisterServer、DllUnregisterServer 和/或 DllInstall) 导出调用入口点。

/? Displays help at the command prompt. 在命令提示显示帮助。

基本用法

功能 命令 文字解释 示例 示例解释
帮助 regsvr32 /? 展示帮助信息

 

版权声明: 本文为独家原创稿件,版权归 乐数软件 ,未经许可不得转载。