https://support.microsoft.com/en-us/kb/910360

Method 1: Make sure that the Cdosys.dll file is correctly registered

  1. Determine whether the Cdosys.dll file is correctly registered. To do this, follow these steps:

    1. Click Start, click Run, type
      regedt32, and then click
      OK
      .
    2. In Registry Editor, locate and then expand the HKEY_CLASSES_ROOT registry subtree. Expand
      TypeLib, and then locate {CD000000-8B95-11D1-82DB-00C04FB1625D}.
    3. Expand {CD000000-8B95-11D1-82DB-00C04FB1625D}, expand
      1.0, and then click 0.
    4. Click win32, and then confirm that the following value is displayed in the right panel:
      Drive:\WINDOWS\system32\cdosys.dll
  2. Register the Cdosys.dll file. To do this, follow these steps:
    1. Click Start, click Run, type
      regsvr32 %systemroot%\system32\cdosys.dll, and then click
      OK.



      Note You may receive the 0x800704da error code if multiple versions of CDO exist on the same operating system. To resolve this issue, use the
      regsrv32 -u cdosys.dll command to unregister the Cdosys.dll file. Then, reregister the Cdosys.dll file by running the following command:

      regsvr32 %systemroot%\system32\cdosys.dll

      For more information about CDO versions, visit the following Microsoft Developer Network (MSDN) Web site:

Method 2: Grant permissions for the user account to access the registry key for CDO for Windows 2000 Library

  1. Grant permission for the user account to access the registry key for CDO for Windows 2000 Library.
  2. Click Start, click Run, type
    regedt32, and then click OK.
  3. In Registry Editor, locate and expand the HKEY_CLASSES_ROOT registry key. Expand
    TypeLib, and then locate {CD000000-8B95-11D1-82DB-00C04FB1625D}.
  4. Right-click {CD000000-8B95-11D1-82DB-00C04FB1625D}, click
    Permissions, and then click
    Add
    .
  5. Type ComputerName\UserName, and then click
    OK



    Note The placeholder ComputerName represents the name of the computer. The placeholder
    UserName represents the name of the user.
  6. Click to select the check box in the Allow column to grant Read permission to the user, and then click
    OK.

How to troubleshoot the "Could not create 'CDO.Message'" error message的更多相关文章

  1. How could I create a custom windows message?

    [问题] Our project is running on Windows CE 6.0 and is written in C++ . We have some problems with the ...

  2. Create STKNetDiskC Instance Error

    关于Create STKNetDiskC Instance Error错误的解决方法 这个错误可能出现在: AM8 附件直接存网盘的时候 报错 解决方法步骤如下: 在出现该错误的机器上,先将AM及 m ...

  3. IDEA无法启动:Failed to create JVM:error code -1

    转自:https://blog.csdn.net/u013243986/article/details/52296944 随便设置把内存加大了, 结果idea就奔溃了,再打开时就提示这样的错误,Fai ...

  4. pip错误-failed to create process/fatal error in launcher

    电脑同时装了python2和python3,并且都配置了环境变量 将python2的python.exe改成python2.exe,python3的python.exe没有改(主要用python2时则 ...

  5. Bugzilla Error message: couldn't create child process: 720003: index.cgi

    two steps is try to fix this issue. 1. Turn off the windowns firewall 2. Register the perl to the sy ...

  6. IDEA无法启动:Failed to create JVM:error code -4

    发生该错误的原因是由于IDEA须要使用的连续内存空间没有得到满足,解决方式: 1.减小-Xmx和-XX:PermSize的值     切换到IDE_HOME\bin\文件夹下,找到<produc ...

  7. Java JVM、JNI、Native Function Interface、Create New Process Native Function API Analysis

    目录 . JAVA JVM . Java JNI: Java Native Interface . Java Create New Process Native Function API Analys ...

  8. IOS开发基础知识--碎片42

    1:报thread 1:exc_bad_access(code=1,address=0x70********) 闪退 这种错误通常是内存管理的问题,一般是访问了已经释放的对象导致的,可以开启僵尸对象( ...

  9. Java并发编程:如何创建线程?

    Java并发编程:如何创建线程? 在前面一篇文章中已经讲述了在进程和线程的由来,今天就来讲一下在Java中如何创建线程,让线程去执行一个子任务.下面先讲述一下Java中的应用程序和进程相关的概念知识, ...

随机推荐

  1. TCP/IP协议图--TCP/IP基础

    1. TCP/IP 的具体含义 从字面意义上讲,有人可能会认为 TCP/IP 是指 TCP 和 IP 两种协议.实际生活当中有时也确实就是指这两种协议.然而在很多情况下,它只是利用 IP 进行通信时所 ...

  2. 05 多继承、object类

    多继承 Python中一个类可以继承多个父类,并且获得全部父类的属性和方法. class A: def demo(self): print("demo") class B: def ...

  3. Linux 进程地址空间及原理

    1.程序地址空间      首先,我们先看学c/c++时候学到的程序内存布局: 准确地说,程序地址空间其实就是进程的地址空间,实际就是pcb中的mm_struct. 接下来,我们用fork()演示一下 ...

  4. dotnet Core学习之旅(一):安装SDK

    [重要:文中所有外链不能确保永久有效] >环境 .NET Core 包含两个部分 .NET Core Runtime 和 .NET Core SDK(包含Runtime) 点击此处到达下载页面( ...

  5. springboot调用mongo

    目录 添加 删除 文档操作更新 简单聚合操作 count, distinct 普通查询 分组 group Aggregate mapReduce 分页查询 文件上传 文件下载 随便测试了一下,有问题请 ...

  6. 织梦安全防护:禁止uploads、data、templets执行脚本

    下面介绍下如何针对uploads.data.templets做PHP脚本限制:对uploads.data.templets 三个目录做执行php脚本限制,就算被上传了木马文件到这些文件夹,也是无法运行 ...

  7. layer.open自定义弹出位置

    fixed:false,设置top才有效,待测试. 这个设置不起作用 var img = "<img src=\"/_temp/qrcodenet/m/book/book20 ...

  8. 【转】使用Scanner输入字符串时next()和nextLine()区别

    在实现字符窗口的输入时,很多人更喜欢选择使用扫描器Scanner,它操作起来比较简单.在编程的过程中,我发现用Scanner实现字符串的输入有两种方法,一种是next(),一种nextLine(),但 ...

  9. Nuget & VS Plugin

    VS Plugin vsCode:https://marketplace.visualstudio.com/vscode vs:https://marketplace.visualstudio.com ...

  10. 管理Linux软件——aptitude

    https://help.ubuntu.com/lts/serverguide/aptitude.html.en