将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002

Installing Office into Windows Container (servercore:ltsc2019) failed with error code 17002

错误信息

安装到 Windows 容器(服务器核心)时 ODT(Office 部署工具)日志报告错误:C2R 客户端返回失败错误代码,错误代码:17002

环境

Docker 文件

FROM mcr.microsoft.com/windows/servercore:ltsc2019
WORKDIR C:/setup
COPY . . 
ENTRYPOINT startup.cmd

startup.cmd

curl.exe https://download.microsoft.com/download/2/7/A/27AF1BE6-DD20-4CB4-B154-EBAB8A7D4A7E/officedeploymenttool_12325-20288.exe  --output .\
officedeploymenttool_12325-20288.exe
officedeploymenttool_12325-20288.exe /quiet /passive /extract:.
setup.exe /configure o365.xml
powershell -file test-o365.ps1
pause

o365.xml

<Configuration>
  <Add OfficeClientEdition="64" Channel="Monthly">
    <Product ID="O365ProPlusRetail">
      <Language ID="en-us" />
    </Product>
  </Add>
  <!--  <Updates Enabled="TRUE" Channel="Monthly" /> -->
  <Display Level="None" AcceptEULA="TRUE" />
  <Logging Level="Standard" Path="." />
  <!--  <Property Name="AUTOACTIVATE" Value="1" />  -->
</Configuration>

test-o365.ps1

# Write current datetime into result.xlsx to verify that Office COM component is working.
$filename = [System.Environment]::CurrentDirectory + "\result.xlsx"
$filename
if ([System.IO.File]::Exists($filename )) {    
    Remove-Item $filename 
}
$xl=New-Object -ComObject Excel.Application
$xl.Visible=$false
$wb=$xl.WorkBooks.Add()
$ws=$wb.WorkSheets.item(1)
$ws.Cells.Item(1,1)= [System.DateTime]::Now
$wb.SaveAs($filename)
$xl.Quit()

更多信息

我们已经注意到文章 [3] 中提到的 'server-side Automation of Office' 个问题。在当前阶段,我们正在评估 运行 遗留 ASP.NET 应用程序在 Windows 容器中的可能性,启用 Office/COM 互操作。

参考资料

  1. Overview of the Office Deployment Tool
  2. What is the Server Core installation option in Windows Server?
  3. Considerations for server-side Automation of Office

我为此苦苦挣扎了一段时间,终于让它工作了。我发现 17002 错误的解决方案是 运行 setup.exe /configure config.xml 同时 运行 交互 docker 图像,然后提交该容器。这在 windows:1809 图像上对我有用。

全文

我正在将下载的 office 文件单独复制到 docker 图像中,因为我在从 docker 文件 (see here) 中下载文件时遇到问题。所以我的文件夹 Office 与 docker 文件处于同一级别,内容为 setup.exe /download config.xml。然后下面的 docker 文件构建一个基础镜像。我 运行 docker run -it {IMAGEID} powershell,导航到 C:\\odtsetup 并使用交互式控制台 运行 setup.exe /configure config.xml,退出容器并 运行

docker stop {CONTAINERID}
docker commit {CONTAINERID}` 

我现在有一个安装了 docker 的基本 windows 服务器映像,可以在我的应用程序的 docker 文件中使用它。如果我需要更新服务器映像或 excel 版本,我将需要再次手动执行此操作,但我很庆幸它能正常工作。

DOCKERFILE

FROM mcr.microsoft.com/windows:1809
WORKDIR C:\odtsetup
ADD https://download.microsoft.com/download/2/7/A/27AF1BE6-DD20-4CB4-B154-EBAB8A7D4A7E/officedeploymenttool_13426-20308.exe odtsetup.exe
RUN odtsetup.exe /quiet /norestart /extract:C:\odtsetup
ADD config.xml .
ADD Office Office\

config.xml

<Configuration>
  <Add OfficeClientEdition="64" Channel="PerpetualVL2019">
    <Product ID="O365ProPlusRetail">
      <Language ID="MatchOS" />
      <ExcludeApp ID="Access" />
      <ExcludeApp ID="Groove" />
      <ExcludeApp ID="Lync" />
      <ExcludeApp ID="OneDrive" />
      <ExcludeApp ID="OneNote" />
      <ExcludeApp ID="Outlook" />
      <ExcludeApp ID="PowerPoint" />
      <ExcludeApp ID="Publisher" />
      <ExcludeApp ID="Teams" />
      <ExcludeApp ID="Word" />
    </Product>
  </Add>
  <Updates Enabled="FALSE" />
  <Display Level="None" AcceptEULA="TRUE" />
  <Property Name="AUTOACTIVATE" Value="1"/>
  <Property Name="FORCEAPPSHUTDOWN" Value="TRUE" />
  <Remove All="TRUE">
  </Remove>
</Configuration>