Skip to content

Tweaks to respond to customer feedback. #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 28, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/install/create-an-offline-installation-of-visual-studio.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,19 +43,19 @@ You can create an offline installation layout that contains all the files you ne
For example, [download the vs_enterprise.exe file](https://www.visualstudio.com/vs/visual-studio-2017-rc/).
2. Run `vs_enterprise.exe` with the following arguments (switches) from a command prompt:

a. Add `--layout <path>`, where `<path>` is the location where you want the layout to download to. By default, all languages are downloaded. (See Example A.)
a. Add `--layout <path>`, where `<path>` is the location where you want the layout to download to. Note that relative paths (e.g. `..\vs2017`) are not supported at present. By default, all languages are downloaded. (See Example A.)

b. Restrict the download to a single language by providing the `--lang <language>` argument, where `<language>` is one of the ISO country codes. (See Example B and Example C.)
b. Restrict the download to a subset of the available languages by providing the `--lang <language>` argument, where `<language>` is one or more of the ISO country codes. (See Example B and Example C.)

### Examples
**Example A**: Install all languages
> ```vs_enterprise.exe --layout C:\layout```
> ```vs_enterprise.exe --layout C:\vs2017```

**Example B**: Install one language
> ```vs_enterprise.exe --layout C:\layout --lang en-US```
> ```vs_enterprise.exe --layout C:\vs2017 --lang en-US```

**Example C**: Install multiple languages
> ```vs_enterprise.exe --layout C:\layout --lang en-US de-DE ja-JP```
> ```vs_enterprise.exe --layout C:\vs2017 --lang en-US de-DE ja-JP```

### Country codes
| ISO Code | Language |
Expand Down