zoukankan      html  css  js  c++  java
  • Excel 2007 automation on top of a Windows Server 2008 x64

    今天在一个客户这边出来一个windows service的问题。这个service需要启动excel程序,并且对一些excel文件做一些操作。

    环境是:windows server 2008 x64+Excel 2007

    总是报告错误:(类似下面这样)

    Service cannot be started. System.Runtime.InteropServices.COMException (0x800A03EC): Microsoft Office Excel cannot access the file 'c:\temp\test.xls'. There are several possible reasons:

    • The file name or path does not exist.
    • The file is being used by another program.
    • The workbook you are trying to save has the same name as a currently open workbook.

    代码怎么看都是可以的,反复调试了service,问题最后解决了,大致有如下几点

     

    第一步:在服务器添加有关的一个目录

    这个方案参考了http://social.msdn.microsoft.com/Forums/en-US/innovateonoffice/thread/b81a3c4e-62db-488b-af06-44421818ef91?prof=required

    This solution is ...

    ・Windows 2008 Server x64
      Please make this folder.

      C:\Windows\SysWOW64\config\systemprofile\Desktop

    ・Windows 2008 Server x86

      Please make this folder.

      C:\Windows\System32\config\systemprofile\Desktop

      ...instead of dcomcnfg.exe.

    This operation took away office automation problems in my system.

    A Desktop folder seems to be necessary in the systemprofile folder to open file by Excel.

    It disappears from Windows2008, Windows2003 had the folder,
    and I think it cause this error.

    I think it is safer than "registry hack".

    If you try this solution, please let me know results.

     

    第二步:设置服务与桌面交互

    image

     

    第三步:关闭服务器的UAC(这一步至关重要,调试了一个下午,就是因为这个问题卡住)

    image

  • 相关阅读:
    输入输出那些事
    NYOJ 20
    NYOJ 283
    HDU 1285
    HDU 2639(第K大背包)
    HDU 4288
    对Visual Studio C++ hash_map严谨一点的测试转载
    vc6,vc.net,vc7,vc8,vc9,c,c++,c#的区别与联系
    我在南大的七年刘末鹏
    慎用Visual Studio C++默认的hash_map转载
  • 原文地址:https://www.cnblogs.com/chenxizhang/p/2025040.html
Copyright © 2011-2022 走看看