regsvr32解决iTunes及RICHTX32.OCX问题

本文出自Simmy的个人blog:西米在线  http://simmyonline.com/archives/573.html
 
这个命令是同时Etian介绍我用的,没想到,竟然帮我修复了两个问题。
1. iTunes问题,开iTunes时,会显示:software required for communicating with ipod not installed correctly,以为是软件问题,重装后情况依旧,上网也没有找到什么解决方案。
 
2. 用Mydata时,收到错误:Failed to load control 'richtextbox' from richtx32.ocx. Your version of richix32.ocx may be outdated。从网上下载了所谓的新版本的richtx32.ocx update了也不行。
 
无奈下,以为只有重装了。中午吃饭时,与同事Etian交流,说到某个命令:
regsvr32,动态链接库文件注册到注册表中的命令。于是在我的小黑上试了下,uninstall再install,然后打开我的那两个有问题的软件,竟然恢复正常了。实在不错。
Microsoft Windows XP [版本 5.1.2600]
(C) 版权所有 1985-2001 Microsoft Corp.
C:\>for %1 in (%windir%\system32\*.dll) do regsvr32 /u /s %1 ----这是卸载的命令
C:\>for %1 in (%windir%\system32\*.dll) do regsvr32 /i /s %1  ----这是重新安装的命令

你可能感兴趣的:(职场,regsvr32,休闲)