Skip to content

Commit 9585271

Browse files
Update automated-installation-with-response-file.md
1 parent 1cc1ccd commit 9585271

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

docs/install/automated-installation-with-response-file.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ When you create or update a layout, a response.template.json file is also create
9696

9797
::: moniker range="=vs-2019"
9898

99-
The following `response.json` file example will initialize a Visual Studio Enterprise client install to select several common workloads and components, to select both the English and French UI languages, and to have the update location configured to point back to the layout. Note that for Visual Studio 2019, the update location (channelURI) can only be configured during initial installation and cannot be changed after the fact _unless_ you use the functionality in the latest installer. Refer to the [Set defaults for enterprise deployments of Visual Studio](set-defaults-for-enterprise-deployments.md#configuring-source-location-for-updates) and the [Configure your layout to always include and provide the latest installer](create-a-network-installation-of-visual-studio.md#configure-the-layout-to-always-include-and-provide-the-latest-installer) for information on how to configure this.
99+
The following `response.json` file example will initialize a Visual Studio Enterprise client install to select several common workloads and components, to select both the English and French UI languages, and to have the update location configured to look for sources in the layout. Note that for Visual Studio 2019, the update location (channelURI) can only be configured during initial installation and cannot be changed after the fact _unless_ you use the functionality in the latest installer. Refer to the [Set defaults for enterprise deployments of Visual Studio](set-defaults-for-enterprise-deployments.md#configuring-source-location-for-updates) and the [Configure your layout to always include and provide the latest installer](create-a-network-installation-of-visual-studio.md#configure-the-layout-to-always-include-and-provide-the-latest-installer) for information on how to configure this.
100100

101101
```Example response.json
102102
{
@@ -111,7 +111,7 @@ The following `response.json` file example will initialize a Visual Studio Enter
111111
"passive": false,
112112
"includeRecommended": true,
113113
"norestart": false,
114-
114+
115115
"addProductLang": [
116116
"en-US",
117117
"fr-FR"
@@ -133,7 +133,7 @@ The following `response.json` file example will initialize a Visual Studio Enter
133133

134134
::: moniker range="=vs-2022"
135135

136-
The following `response.json` file example will initialize a Visual Studio Enterprise client install to select several common workloads and components, to select both the English and French UI languages, and to have the update location configured to point back to the layout.
136+
The following `response.json` file example will initialize a Visual Studio Enterprise client install to select several common workloads and components, to select both the English and French UI languages, to always remove components that have transitioned to out of support when the client is being updated, and to have the update location configured to look for sources in the layout.
137137

138138
```Example response.json
139139
{
@@ -148,6 +148,7 @@ The following `response.json` file example will initialize a Visual Studio Enter
148148
"passive": false,
149149
"includeRecommended": true,
150150
"norestart": false,
151+
"removeOos": true,
151152

152153
"addProductLang": [
153154
"en-US",

0 commit comments

Comments
 (0)