回答編集履歴

1

追加

2021/03/25 07:32

投稿

sinya0320
sinya0320

スコア211

test CHANGED
@@ -3,3 +3,101 @@
3
3
  試していないです。
4
4
 
5
5
  [クイック実行用の Office 展開ツールでサポートされる製品 ID の一覧](https://docs.microsoft.com/ja-jp/office365/troubleshoot/installation/product-ids-supported-office-deployment-click-to-run)
6
+
7
+
8
+
9
+ ---
10
+
11
+ 提示されているexeは分からなかったので、とりあえず↓で
12
+
13
+ [Office Deployment Tool](https://www.microsoft.com/en-us/download/details.aspx?id=49117)をダウンロードして実行、展開する
14
+
15
+ ```
16
+
17
+ configuration-Office2019Enterprise.xml
18
+
19
+ configuration-Office365-x64.xml
20
+
21
+ configuration-Office365-x86.xml
22
+
23
+ setup.exe
24
+
25
+ ```
26
+
27
+ > <Add OfficeClientEdition="32" Channel="PerpetualVL2019">
28
+
29
+
30
+
31
+ とあるので、32bit版かな?
32
+
33
+
34
+
35
+ `configuration-Office365-x86.xml`これかな。コメントは削除
36
+
37
+ ```
38
+
39
+ <Configuration>
40
+
41
+ <Add OfficeClientEdition="32" Channel="Monthly">
42
+
43
+ <Product ID="O365ProPlusRetail">
44
+
45
+ <Language ID="en-us" />
46
+
47
+ </Product>
48
+
49
+ <Product ID="VisioProRetail">
50
+
51
+ <Language ID="en-us" />
52
+
53
+ </Product>
54
+
55
+ </Add>
56
+
57
+ </Configuration>
58
+
59
+ ```
60
+
61
+ エラーの出るxmlは↓で
62
+
63
+ ```
64
+
65
+ <Configuration>
66
+
67
+ <Add OfficeClientEdition="32" Channel="PerpetualVL2019">
68
+
69
+ <Product ID="AccessRuntimeRetail" >
70
+
71
+ <Language ID="ja-jp" />
72
+
73
+ </Product>
74
+
75
+ </Add>
76
+
77
+ </Configuration>
78
+
79
+ ```
80
+
81
+ 見比べると、`Channel`の指定が誤っているのではないかな
82
+
83
+
84
+
85
+ この記述で、どうでしょうか
86
+
87
+ ```
88
+
89
+ <Configuration>
90
+
91
+ <Add OfficeClientEdition="32" Channel="Monthly">
92
+
93
+ <Product ID="AccessRuntimeRetail" >
94
+
95
+ <Language ID="ja-jp" />
96
+
97
+ </Product>
98
+
99
+ </Add>
100
+
101
+ </Configuration>
102
+
103
+ ```