teratail header banner
teratail header banner
質問するログイン新規登録

回答編集履歴

1

追加

2021/03/25 07:32

投稿

sinya0320
sinya0320

スコア211

answer CHANGED
@@ -1,3 +1,52 @@
1
1
  これかな?
2
2
  試していないです。
3
- [クイック実行用の Office 展開ツールでサポートされる製品 ID の一覧](https://docs.microsoft.com/ja-jp/office365/troubleshoot/installation/product-ids-supported-office-deployment-click-to-run)
3
+ [クイック実行用の Office 展開ツールでサポートされる製品 ID の一覧](https://docs.microsoft.com/ja-jp/office365/troubleshoot/installation/product-ids-supported-office-deployment-click-to-run)
4
+
5
+ ---
6
+ 提示されているexeは分からなかったので、とりあえず↓で
7
+ [Office Deployment Tool](https://www.microsoft.com/en-us/download/details.aspx?id=49117)をダウンロードして実行、展開する
8
+ ```
9
+ configuration-Office2019Enterprise.xml
10
+ configuration-Office365-x64.xml
11
+ configuration-Office365-x86.xml
12
+ setup.exe
13
+ ```
14
+ > <Add OfficeClientEdition="32" Channel="PerpetualVL2019">
15
+
16
+ とあるので、32bit版かな?
17
+
18
+ `configuration-Office365-x86.xml`これかな。コメントは削除
19
+ ```
20
+ <Configuration>
21
+ <Add OfficeClientEdition="32" Channel="Monthly">
22
+ <Product ID="O365ProPlusRetail">
23
+ <Language ID="en-us" />
24
+ </Product>
25
+ <Product ID="VisioProRetail">
26
+ <Language ID="en-us" />
27
+ </Product>
28
+ </Add>
29
+ </Configuration>
30
+ ```
31
+ エラーの出るxmlは↓で
32
+ ```
33
+ <Configuration>
34
+ <Add OfficeClientEdition="32" Channel="PerpetualVL2019">
35
+ <Product ID="AccessRuntimeRetail" >
36
+ <Language ID="ja-jp" />
37
+ </Product>
38
+ </Add>
39
+ </Configuration>
40
+ ```
41
+ 見比べると、`Channel`の指定が誤っているのではないかな
42
+
43
+ この記述で、どうでしょうか
44
+ ```
45
+ <Configuration>
46
+ <Add OfficeClientEdition="32" Channel="Monthly">
47
+ <Product ID="AccessRuntimeRetail" >
48
+ <Language ID="ja-jp" />
49
+ </Product>
50
+ </Add>
51
+ </Configuration>
52
+ ```