Skip to content

Commit ec21799

Browse files
authored
Merge pull request #96238 from ChristianMontoya/patch-4
Changing recommended office installation
2 parents d014e76 + 3baa555 commit ec21799

File tree

1 file changed

+18
-33
lines changed

1 file changed

+18
-33
lines changed

articles/virtual-desktop/install-office-on-wvd-master-image.md

Lines changed: 18 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,9 @@ The Office Deployment Tool requires a configuration XML file. To customize the f
3232

3333
This sample configuration XML we've provided will do the following things:
3434

35-
- Install Office from the Insiders Channel and deliver updates from the Insiders Channel when they’re executed.
35+
- Install Office from the monthly channel and deliver updates from the monthly channel when they’re executed.
3636
- Use the x64 architecture.
3737
- Disable automatic updates.
38-
- Install Visio and Project.
3938
- Remove any existing installations of Office and migrate their settings.
4039
- Enable shared computer activation.
4140

@@ -58,40 +57,26 @@ Setup.exe /configure configuration.xml
5857

5958
#### Sample configuration.xml
6059

61-
The following XML sample will install the Insiders release.
60+
The following XML sample will install the monthly release.
6261

6362
```xml
6463
<Configuration>
65-
<Add OfficeClientEdition="64" SourcePath="https://officecdn.microsoft.com/pr/5440fd1f-7ecb-4221-8110-145efaa6372f">
66-
<Product ID="O365ProPlusRetail">
67-
<Language ID="en-US" />
68-
<Language ID="MatchOS" Fallback = "en-US"/>
69-
<Language ID="MatchPreviousMSI" />
70-
<ExcludeApp ID="Groove" />
71-
<ExcludeApp ID="Lync" />
72-
<ExcludeApp ID="OneDrive" />
73-
<ExcludeApp ID="Teams" />
74-
</Product>
75-
<Product ID="VisioProRetail">
76-
<Language ID="en-US" />
77-
<Language ID="MatchOS" Fallback = "en-US"/>
78-
<Language ID="MatchPreviousMSI" />
79-
<ExcludeApp ID="Teams" />
80-
</Product>
81-
<Product ID="ProjectProRetail">
82-
<Language ID="en-US" />
83-
<Language ID="MatchOS" Fallback = "en-US"/>
84-
<Language ID="MatchPreviousMSI" />
85-
<ExcludeApp ID="Teams" />
86-
</Product>
87-
</Add>
88-
<RemoveMSI All="True" />
89-
<Updates Enabled="FALSE" UpdatePath="https://officecdn.microsoft.com/pr/5440fd1f-7ecb-4221-8110-145efaa6372f" />
90-
<Display Level="None" AcceptEULA="TRUE" />
91-
<Logging Level="Verbose" Path="%temp%\WVDOfficeInstall" />
92-
<Property Value="TRUE" Name="FORCEAPPSHUTDOWN"/>
93-
<Property Value="1" Name="SharedComputerLicensing"/>
94-
<Property Value="TRUE" Name="PinIconsToTaskbar"/>
64+
<Add OfficeClientEdition="64" Channel="Monthly">
65+
<Product ID="O365ProPlusRetail">
66+
<Language ID="en-US" />
67+
<Language ID="MatchOS" />
68+
<ExcludeApp ID="Groove" />
69+
<ExcludeApp ID="Lync" />
70+
<ExcludeApp ID="OneDrive" />
71+
<ExcludeApp ID="Teams" />
72+
</Product>
73+
</Add>
74+
<RemoveMSI/>
75+
<Updates Enabled="FALSE"/>
76+
<Display Level="None" AcceptEULA="TRUE" />
77+
<Logging Level=" Standard" Path="%temp%\WVDOfficeInstall" />
78+
<Property Name="FORCEAPPSHUTDOWN" Value="TRUE"/>
79+
<Property Name="SharedComputerLicensing" Value="1"/>
9580
</Configuration>
9681
```
9782

0 commit comments

Comments
 (0)