pywintypes25.dll

来源:互联网 发布:淘宝网怎么退出智能版 编辑:程序博客网 时间:2024/06/05 01:05
 如何注册DLL文件
将您下载的 "*. DLL" 文件复制到 "C:\Windows\system32\" 系统目录下然后按 "Win键+R" 或单击 "开始"->"运行" 输入 "regsvr32 *.dll" 命令注册到系统文件。适用于Windows95/98/xp/2000/vista/win7.

如何注册Windows\system32\下的所有.dll和.ocx文件?
在开始->运行(win+r)下输入命令:
cmd /c for %i in (%windir%\system32\*.dll) do regsvr32.exe /s %i
cmd /c for %i in (%windir%\system32\*.ocx) do regsvr32.exe /s %i
注:出现 “xxx.exe - 无法找到入口,无法定位程序输入点 xxx 于动态链接库 xxx.dll上。” 的问题一般是由于dll文件版本与exe文件版本文件不同造成。