日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

Mirosoft Office自动化问题

發布時間:2025/7/14 41 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Mirosoft Office自动化问题 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

我們習慣于將Jenkins slave安裝成Windows Service,而微軟的Office自動化部分,不支持以Windows Service的方式運行。以下的代碼,如果在Jenkins Slave ( As windows service) 中運行,將導致Word打開的時候出錯。( doc = word.Documents.Open(in_file) )

import sys import os import time import win32com.clientwdFormatPDF = 17in_file = r'C:\Users\Administrator\Desktop\Build\ter\forExample.doc'word = win32com.client.Dispatch('Word.Application')word.Visible = True word.ScreenUpdating = Falsein_file = os.path.join(docDir, doc['docName']) out_file = in_file.split('.')[0] + '.pdf'doc = word.Documents.Open(in_file) time.sleep(15)doc.Activate() doc.AcceptAllRevisions() doc.Revisions.AcceptAll() if (doc.Comments.Count != 0):doc.DeleteAllComments()doc.SaveAs(out_file, FileFormat=wdFormatPDF) doc.Close()word.Quit()


解決的辦法是:

1. Create a desktop folder for the system profile, as:

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

and, if running on a 64-bit machine, create another one, as:

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

2. The folder(s) need write permission for whatever user is "driving" Office.

Note that, on 64-bit Windows, you need both folders, not just the WOW64 one

?

?

轉載于:https://www.cnblogs.com/LegendOfBFS/p/3513439.html

總結

以上是生活随笔為你收集整理的Mirosoft Office自动化问题的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。