<
您还没有登录┊登录注册 当前在线:593
源码程序系统工具编程开发图形图像网络软件应用软件多媒体类娱乐休闲驱动程序各类教程各类论文文章阅读
ASPPHPJSPASP.NETVBVF百度搜索星星练题网络文摘股市消息技能习题详细分类
当前位置:首页 \ 各类教程 \ 计算机
站内搜索


Regsvr32命令参数说明

文件大小:1 k
运行平台:Windows9X/ME/NT/2000/XP
级别评定:
添加时间:2010-4-13 9:16:16
最后更新:2010-4-13 9:16:16
相关链接:无
所需金额:0 元
添加者:管理员

Download.1 Download.2

/ ::软件简介:: / ::相关软件:: / ::软件点评:: /::上一个::/ ::下一个:: /
管理首页

Regsvr32命令参数说明

网络安全提示:Regsvr32命令修复系统故障实例使用过activex的人都知道,activex不注册是不能够被系统识别和使用的,一般安装程序都会自动地把它所使用的activex控件注册,但如果你拿到的一个控件需要手动注册怎么办呢
Regsvr32命令修复系统故障实例使用过activex的人都知道,activex不注册是不能够被系统识别和使用的,一般安装程序都会自动地把它所使用的activex控件注册,但如果你拿到的一个控件需要手动注册怎么办呢?如果修改注册表那就太麻烦了,在windows的system文件夹下有一个regsvr32.exe的程序,它就是windows自带的activex注册和反注册工具。

2000系统的regsvr32.exe在winnt\system32文件夹下;
WInXP系统的regsvr32.exe在windows\system32文件夹下

regsvr32的用法为:
"regsvr32 [/s] [/n] [/i(:cmdline)] dllname”。其中dllname为activex控件文件名,建议在安装前拷贝到system文件夹下。

参数有如下意义:
/u——反注册控件
/s——不管注册成功与否,均不显示提示框
/c——控制台输出
/i——跳过控件的选项进行安装(与注册不同)
/n——不注册控件,此选项必须与/i选项一起使用

执行该命令的方法:

1、可以在“开始”--“运行”,调出运行的对话框,也可以使用Win+R热键,然后直接在输入栏输入即可
2、在开始--运行 输入cmd,调出‘命令提示符’窗口,然后再执行regsvr32命令。

二、Regsvr32错误消息的说明
当使用 Regsvr32.exe 时,它会尝试加载该组件并调用它的 DLLSelfRegister 函数。如果此尝试成功,Regsvr32.exe 会显示一个指示成功的对话框。如果此尝试失败,Regsvr32.exe 会返回一条错误消息,其中可能会包括一个 Win32 错误代码。

以下列表介绍了 RegSvr32 错误消息和可能的原因。

Unrecognized flag:/invalid_flag
键入的标志或开关组合无效(请参阅本文中的“Regsvr32.exe 的用法”一节)

No DLL name specified.
未包括 .dll 文件名(请参阅本文中的“Regsvr32.exe 的用法”一节)

Dllname was loaded, but the DllRegisterServer or DllUnregisterServer entry point was not found.
Dllname不是.dll 或.ocx 文件。例如,键入 regsvr32 wjview.exe 就会生成该错误消息。

例如,键入regsvr32 icwdial.dll 后就会返回该错误消息,因为 Icwdial.dll 文件不能自行注册。如果您怀疑内存中有损坏的Dllname 版本,请尝试重新启动计算机,或重新提取该文件的原始版本。如果您运行的是 Windows NT,可能需要使用 Microsoft Windows NT Server 4.0 资源工具包 中的 Kill 或 Pview 工具。有关其他信息,请单击以查看以下 Microsoft 知识库文章:197155 如何终止孤立进程OleInitialize failed (or OleUninitialize failed).

Regsvr32 必须先初始化 COM 库,然后才能调用所需的 COM 库函数并在关闭时撤消对该库的初始化

DllInstall  
  Handles   installation   and   setup   for   a   DLL.    
   
  HRESULT   DllInstall(  
  BOOL   bInstall,  
  LPCWSTR   pszCmdLine  
  );  
   
  Parameters  
  bInstall    
  Value   that   is   set   to   TRUE   if   the   DLL   is   being   installed,   or   FALSE   if   it   is   being   uninstalled.    
  pszCmdLine    
  String   passed   in   by   regsvr32   that   indicates   which   setup   procedure   to   use.    
  Return   Values  
  Returns   NOERROR   if   successful,   or   an   OLE-defined   error   value   otherwise.    
   
  Remarks  
  This   function   may   be   implemented   and   exported   by   name   by   a   DLL   for   use   during   application   installation   or   setup.   It   is   invoked   by   regsvr32   to   allow   the   DLL   to   perform   tasks   such   adding   information   to   the   registry.  
   
  DllInstall   is   used   only   for   application   installation   and   setup.   It   should   not   be   called   by   an   application.   It   is   similar   in   purpose   to   DllRegisterServer   or   DllUnregisterServer.   Unlike   these   functions,   DllInstall   takes   an   input   string   which   can   be   used   to   specify   a   variety   of   different   actions.   This   allows   a   DLL   to   be   installed   in   more   than   one   way,   based   on   any   criteria   that   is   appropriate.    
   
  To   use   DllInstall   with   regsvr32,   add   a   "/i"   flag   followed   by   a   colon   (:)   and   a   string.   The   string   will   be   passed   to   the   DllInstall   as   the   pszCmdLine   parameter.   If   you   omit   the   colon   and   string,   pszCmdLine   will   be   set   to   NULL.   The   following   example   would   be   used   to   install   a   DLL:    
   
  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:    
   
  regsvr32   /u   /i:"Install_1"   dllname.dll  
  With   both   of   the   above   examples,   DllRegisterServer   or   DllUnregisterServer   will   also   be   called.   To   call   DllInstall   only,   add   a   "/n"   flag:    
   
  regsvr32   /n   /i:"Install_1"   dllname.dll   
 

相关软件
·卫视参数小偷程序 v1.0
·设备参数说明在线管理系统
·设备参数说明在线管理系统 


1分 0
2分 0
3分 0
4分 0
5分 0
共有 0 人打分
平均得分:0


按字符查询:ABCDEFGHIJKLMNOPQRSTUVWXYZ0~9中文
下载图示: - 附汉化补丁 - 附注册 - 会员软件 - 推荐 - 最新添加
Rainight, 星旺坡 联网备案号:41092802000212 豫ICP备19032584号-1 页面执行时间: 0.13秒
业务QQ:80571569 手机:13030322310