Skip to content

Commit 98e353d

Browse files
committed
Merging changes synced from https://github.com/MicrosoftDocs/visualstudio-docs-pr (branch live)
2 parents 3e82292 + 645303f commit 98e353d

21 files changed

+77
-38
lines changed

docs/install/update-minimal-layout.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ Before creating the layout, you can find out the total size of the download and
8686
8787
Let's walk through a few examples of how to preview, generate, and regenerate a minimal layout:
8888
89+
::: moniker range="vs-2019"
90+
8991
- First, here's an example of how to preview a layout for Visual Studio Enterprise versions 16.4.0 to 16.4.4 for English only.
9092
9193
```cmd
@@ -118,6 +120,44 @@ A couple of other examples using the **generate** command:
118120
MinimalLayout.exe generate --targetLocation c:\VSLayout\ --productId Microsoft.VisualStudio.Product.Enterprise --baseVersion 16.4.0 --targetVersion 16.4.4 --add Microsoft.VisualStudio.Workload.ManagedDesktop;includeOptional --languages en-US fr-FR
119121
```
120122
123+
::: moniker-end
124+
125+
::: moniker range="vs-2017"
126+
127+
- First, here's an example of how to preview a layout for Visual Studio Enterprise versions 15.0.0 to 15.9.31 for English only.
128+
129+
```cmd
130+
MinimalLayout.exe preview --targetLocation c:\VSLayout\ --productId Microsoft.VisualStudio.Product.Enterprise --baseVersion 15.0.0 --targetVersion 15.9.31 --languages en-US
131+
```
132+
133+
- Here's how to generate that same layout with one workload.
134+
135+
```cmd
136+
MinimalLayout.exe generate --targetLocation c:\VSLayout\ --productId Microsoft.VisualStudio.Product.Enterprise --baseVersion 15.0.0 --targetVersion 15.9.31 --add Microsoft.VisualStudio.Workload.ManagedDesktop;includeOptional --languages en-US
137+
```
138+
139+
- And here's how to regenerate a minimal offline layout using an existing response file.
140+
141+
```cmd
142+
MinimalLayout.exe regenerate -filepath c:\VSLayout\MinimalLayout.json
143+
```
144+
145+
A couple of other examples using the **generate** command:
146+
147+
- Here's how to add an additional workload, and include only the recommended packages.
148+
149+
```cmd
150+
MinimalLayout.exe generate --targetLocation c:\VSLayout\ --productId Microsoft.VisualStudio.Product.Professional --baseVersion 15.0.0 --targetVersion 15.9.31 --add Microsoft.VisualStudio.Workload.ManagedDesktop Microsoft.VisualStudio.Workload.NetWeb;includeRecommended --languages en-US
151+
```
152+
153+
- And finally, here's how you'd include multiple languages in your minimal layout.
154+
155+
```cmd
156+
MinimalLayout.exe generate --targetLocation c:\VSLayout\ --productId Microsoft.VisualStudio.Product.Enterprise --baseVersion 15.0.0 --targetVersion 15.9.31 --add Microsoft.VisualStudio.Workload.ManagedDesktop;includeOptional --languages en-US fr-FR
157+
```
158+
159+
::: moniker-end
160+
121161
### How to maintain a minimal layout
122162
123163
Use the **verify** and **fix** commands to maintain your minimal layout after it's created. The **verify** command determines if there are any corrupt or missing packages in the minimal layout. If you encounter any problems after running the **verify** command, use the **fix** command to correct those missing or corrupt packages.
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Contact your admin to have a Visual Studio Subscription assigned | Microsoft Docs
2+
title: Contact your admin to have a Visual Studio Subscription assigned
33
author: evanwindom
44
ms.author: v-evwin
55
manager: csbuschl
@@ -10,12 +10,12 @@ description: Learn how to request a Visual Studio subscription at your workplac
1010
---
1111

1212
## How to request a Visual Studio subscription from your work/school
13-
Many organizations, including workplaces and schools, purchase Visual Studio subscriptions through a variety of licensing programs. These subscriptions are managed by subscriptions administrators (admins) who can assign subscriptons, establish preferences, and enable or disable certain features.
13+
Many organizations, including workplaces and schools, purchase Visual Studio subscriptions through various licensing programs. These subscriptions are managed by subscriptions administrators (admins) who can assign subscriptions, establish preferences, and enable or disable certain features.
1414

15-
**Contact your subscription administrator to request a subscription**
16-
To use a subscription managed by your organization, one must first be assigned to you by an admin. You will need to contact an admin to request a subscription. In large organizations it may be difficult to know who your admin is. Many organizations have multiple admins.
15+
## Contact your subscription administrator to request a subscription
16+
To use a subscription managed by your organization, one must first be assigned to you by an admin. You will need to contact an admin to request a subscription. In large organizations, it may be difficult to know who your admin is. Many organizations have multiple admins.
1717

18-
If you are unsure who your admins are, you may find it helpful to contact a colleague who has a subscription assigned to them. Existing subscribers can visit https://my.visualstudio.com/subscriptions. They'll see a **Contact my Admin** button at the top right which they can use to send messages to admins. The button does not expose the names or emails of the admins, though, so your colleague will need to ask an admin to contact you about your request.
18+
If you're not sure who your admins are, you may find it helpful to contact a colleague who has a subscription assigned to them. Existing subscribers can visit https://my.visualstudio.com/subscriptions. They'll see a **Contact my Admin** button at the top right, which they can use to send messages to admins. The button does not expose the names or emails of the admins, though, so your colleague will need to ask an admin to contact you about your request.
1919

20-
**Use the Contact my Admin feature**
21-
Please view our [Contact my Admin](https://docs.microsoft.com/visualstudio/subscriptions/contact-my-admin) article for more information about the feature.
20+
## Use the Contact my Admin feature
21+
Read our [Contact my Admin](https://docs.microsoft.com/visualstudio/subscriptions/contact-my-admin) article for more information.

subscriptions/solutions/benefit-activation/includes/error-while-activating-azure-monthly-credit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: I'm getting an error while trying to activate my Azure monthly credit.
2+
title: Getting an error while trying to activate my Azure monthly credit
33
description: I'm getting an error while trying to activate my Azure monthly credit included with my Visual Studio subscription.
44
ms.topic: include
55
ms.assetid: eed8114a-651a-47e2-bb24-130acd2a76d0

subscriptions/solutions/benefit-activation/includes/how-do-i-activate-azure-monthly-credit.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ There is no cost to use your Azure dev/test individual credit and no credit card
2828
Azure subscriptions created via the Visual Studio Subscriptions benefit may be impacted by restrictions that aren’t imposed on paid subscriptions. Certain geographies may not be available for creating VMs and Azure services, and certain service types may not be available. There may be a lower default quota than on paid subscriptions.
2929

3030
## More information about Azure credits
31-
[Read more](https://docs.microsoft.com/visualstudio/subscriptions/vs-azure) information on activation, eligibility, and other support resources.
31+
Read more [information on activation, eligibility, and other support resources](https://docs.microsoft.com/visualstudio/subscriptions/vs-azure).
3232

33-
[Learn how](https://azure.microsoft.com/pricing/member-offers/credit-for-visual-studio-subscribers/#azure-credits) to use the Azure credits that are included in your Visual Studio subscription.
33+
[Learn how to use the Azure credits](https://azure.microsoft.com/pricing/member-offers/credit-for-visual-studio-subscribers/#azure-credits) that are included in your Visual Studio subscription.

subscriptions/solutions/benefit-activation/includes/unable-to-activate-azure-devops.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: I'm unable to activate my Azure DevOps benefit.
2+
title: Unable to activate my Azure DevOps benefit
33
description: I'm unable to activate my Azure DevOps benefit included with my Visual Studio subscription.
44
ms.topic: include
55
ms.assetid: 3ec2a8c1-07e0-45cd-808c-c354b9e26fb4
@@ -22,4 +22,4 @@ As a Visual Studio subscriber, you can use a range of features in Azure DevOps.
2222
1. Sign into Azure DevOps using the email that you use to sign into your Visual Studio subscription. If you prefer to use a different email to log in, you can [create an alternate account](https://docs.microsoft.com/visualstudio/subscriptions/vs-alternate-identity) to link your subscription, allowing you to access Azure DevOps using both emails.
2323

2424
## More information about subscription eligibility
25-
[Read more](https://docs.microsoft.com/visualstudio/subscriptions/vs-azure-devops) information on eligibility by subscription level.
25+
Read more [information on eligibility by subscription level](https://docs.microsoft.com/visualstudio/subscriptions/vs-azure-devops).

subscriptions/solutions/benefit-activation/includes/unable-to-activate-azure-pay-as-you-go-subscription.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: I'm unable to activate my Azure Dev / Test Pay-As-You-Go subscription.
2+
title: Unable to activate my Azure Dev / Test Pay-As-You-Go subscription
33
description: I'm unable to activate my Azure Dev / Test Pay-As-You-Go subscription included with my Visual Studio subscription?
44
ms.topic: include
55
ms.assetid: 6ad8bb6e-e571-450e-860b-acf1e78921d7
@@ -24,4 +24,4 @@ As a Visual Studio subscriber, you receive exclusive discounted hourly rates for
2424

2525
## More information about subscriptions
2626

27-
[Read more information about Azure Dev/Test Pay-As-You-Go subscriptions](https://docs.microsoft.com/visualstudio/subscriptions/vs-azure-payg).
27+
Read more [information about Azure Dev/Test Pay-As-You-Go subscriptions](https://docs.microsoft.com/visualstudio/subscriptions/vs-azure-payg).

subscriptions/solutions/benefit-activation/includes/unable-to-activate-enterprise-mobility-security-benefit.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: I'm unable to activate my Enterprise Mobility + Security (EMS) benefit.
2+
title: Unable to activate my Enterprise Mobility + Security (EMS) benefit
33
description: I'm unable to activate my Enterprise Mobility + Security (EMS) benefit included with my Visual Studio subscription?
44
ms.topic: include
55
ms.assetid: 104e6ef4-5bb1-4f26-af7c-a6925e3665c7
@@ -37,4 +37,4 @@ After you delete your Office 365 E3 subscription and create your replacement Mic
3737

3838
## More information about Office 365 E3 subscriptions
3939

40-
[Read more](https://docs.microsoft.com/visualstudio/subscriptions/vs-m365) information on eligibility, how to migrate from Office 365 E3 to Microsoft 365, and FAQs.
40+
Read more [information on eligibility, how to migrate from Office 365 E3 to Microsoft 365, and FAQs](https://docs.microsoft.com/visualstudio/subscriptions/vs-m365).

subscriptions/solutions/benefit-activation/includes/unable-to-activate-pluralsight-benefit.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: I'm unable to activate my Pluralsight benefit.
2+
title: Unable to activate my Pluralsight benefit
33
description: I'm unable to activate my Pluralsight benefit included with my Visual Studio subscription?
44
ms.topic: include
55
ms.assetid: 7e5d8886-538c-4e29-9c4c-8989cf4e09dd
@@ -26,4 +26,4 @@ this registration page expires after a few minutes. If you don't complete the re
2626

2727
## More information about the Pluralsight benefit
2828

29-
[Read more](https://docs.microsoft.com/visualstudio/subscriptions/vs-pluralsight) information on activation, eligibility, and FAQs about the Pluralsight benefit.
29+
Read more [information on activation, eligibility, and FAQs about the Pluralsight benefit](https://docs.microsoft.com/visualstudio/subscriptions/vs-pluralsight).

subscriptions/solutions/benefit-activation/includes/unable-to-see-azure-monthly-credit-in-azure-portal.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: I'm unable to see my Azure monthly credit in the Azure portal.
2+
title: Unable to see my Azure monthly credit in the Azure portal
33
description: I'm unable to see my Azure monthly credit after logging into the Azure portal
44
ms.topic: include
55
ms.assetid: 48420a4c-11b4-4bbd-a509-2c939d24e81a
@@ -41,6 +41,6 @@ Azure subscriptions created via the Visual Studio Subscriptions benefit may be i
4141

4242
## More information about Azure monthly credits
4343

44-
[Read more](https://docs.microsoft.com/visualstudio/subscriptions/vs-azure) information on activation, eligibility, and other support resources.
44+
Read more [information on activation, eligibility, and other support resources](https://docs.microsoft.com/visualstudio/subscriptions/vs-azure).
4545

46-
[Learn how](https://azure.microsoft.com/pricing/member-offers/credit-for-visual-studio-subscribers/#azure-credits) to use the Azure credits that are included in your Visual Studio subscription.
46+
[Learn how to use the Azure credits](https://azure.microsoft.com/pricing/member-offers/credit-for-visual-studio-subscribers/#azure-credits) that are included in your Visual Studio subscription.

subscriptions/solutions/downloading-activating-or-using-software/downloading-activating-or-using-software/includes/unable-to-download-software-non-visualstudio.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: I'm unable to download or activate software (excluding Visual Studio family)
2+
title: Unable to download or activate software (excluding Visual Studio family)
33
description: I'm unable to download or activate software (excluding Visual Studio family), included with my Visual Studio subscription.
44
ms.topic: include
55
ms.assetid: 4e67a935-40f9-4c26-b836-e06aa8582bad
@@ -29,4 +29,4 @@ You can [download an extensive list](https://download.microsoft.com/download/1/5
2929
You can also visit the [Product Keys](https://my.visualstudio.com/productkeys) page where all keys are available in aggregate. You can edit the notes column for identifying when and why you claimed the key.
3030

3131
## More information about downloads
32-
[Read more](https://docs.microsoft.com/visualstudio/subscriptions/find-keys) on finding and claiming product keys and downloads.
32+
Read more on [finding and claiming product keys and downloads](https://docs.microsoft.com/visualstudio/subscriptions/find-keys).

subscriptions/solutions/downloading-activating-or-using-software/downloading-activating-or-using-software/includes/unable-to-download-visual-studio-community.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: I'm Unable to download or activate Visual Studio Community
2+
title: Unable to download or activate Visual Studio Community
33
description: I'm unable to download or activate Visual Studio Community.
44
ms.topic: include
55
ms.assetid: 0c74cb35-a500-4fa0-b010-ac76ee56d2f9

subscriptions/solutions/downloading-activating-or-using-software/downloading-activating-or-using-software/includes/unable-to-locate-product.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: I'm unable to locate a product
2+
title: Unable to locate a product
33
description: I'm unable to locate a product to download with my Visual Studio subscription.
44
ms.topic: include
55
ms.assetid: a3635d25-8f9d-4cf8-a9c3-db41d155f989
@@ -29,4 +29,4 @@ You can [download an extensive list](https://download.microsoft.com/download/1/5
2929
You can also visit the [Product Keys](https://my.visualstudio.com/productkeys) page where all keys are available in aggregate. You can edit the notes column for identifying when and why you claimed the key.
3030

3131
## More information about product keys
32-
[Read more](https://docs.microsoft.com/visualstudio/subscriptions/find-keys) on finding and claiming product keys and downloads.
32+
Read more on [finding and claiming product keys and downloads](https://docs.microsoft.com/visualstudio/subscriptions/find-keys).

subscriptions/solutions/downloading-activating-or-using-software/finding-or-using-product-keys/includes/unable-to-find-or-claim-product-keys.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ If you don’t see a key or product, it’s possible that the product is not ava
2424

2525
## More information on product key types
2626

27-
[Read more](https://docs.microsoft.com/visualstudio/subscriptions/find-keys) about product key types and claiming product keys.
27+
Read more about [product key types and claiming product keys](https://docs.microsoft.com/visualstudio/subscriptions/find-keys).

subscriptions/solutions/other-or-no-solution/includes/no-solution.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Other
3-
description: Solution shown when 'other' category is selected or no solution is found
2+
title: My issue is not listed
3+
description: Solution shown when 'issue not listed' category is selected or no solution is found
44
ms.topic: include
55
ms.assetid: c1537b27-0ae4-4bf3-b1e4-ff05f8e14359
66
author: caitybuschlen

subscriptions/solutions/portal-issue/includes/controls-or-buttons-not-working.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Controls or buttons are not working.
2+
title: Controls or buttons are not working
33
description: Controls or buttons are not working in the Visual Studio subscription portal.
44
ms.topic: include
55
ms.assetid: 33b1aa45-b2fc-4c00-9862-3d1281d28fa2

subscriptions/solutions/portal-issue/includes/page-cannot-be-displayed.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Page cannot be displayed.
2+
title: Page cannot be displayed
33
description: Page cannot be displayed in the Visual Studio subscription portal.
44
ms.topic: include
55
ms.assetid: aef07dc7-29cc-406e-9373-0b808facb35b

subscriptions/solutions/renewing-purchasing-or-canceling/help-purchasing/includes/help-me-purchase-marketplace.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Billing is handled through your Microsoft Azure subscription. If you don’t hav
2323
* [Visual Studio Professional - monthly subscription](https://marketplace.visualstudio.com/items?itemName=ms.vs-professional-monthly)
2424
* [Visual Studio Enterprise - monthly subscription](https://marketplace.visualstudio.com/items?itemName=ms.vs-enterprise-monthly)
2525

26-
[Read more](https://docs.microsoft.com/visualstudio/subscriptions/vscloud-billing-faq) about monthly Visual Studio Subscriptions Azure billing.
26+
Read more about [monthly Visual Studio Subscriptions Azure billing](https://docs.microsoft.com/visualstudio/subscriptions/vscloud-billing-faq).
2727

2828
## More information about subscription benefits
2929

subscriptions/solutions/renewing-purchasing-or-canceling/help-purchasing/includes/where-can-i-purchase-from.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ With monthly subscriptions, you can rent Visual Studio and Azure DevOps without
3737
* [Visual Studio Professional - monthly subscription](https://marketplace.visualstudio.com/items?itemName=ms.vs-professional-monthly)
3838
* [Visual Studio Enterprise - monthly subscription](https://marketplace.visualstudio.com/items?itemName=ms.vs-enterprise-monthly)
3939

40-
[Read more](https://docs.microsoft.com/visualstudio/subscriptions/vscloud-billing-faq) about monthly Visual Studio Subscriptions billing.
40+
Read more about [monthly Visual Studio Subscriptions billing](https://docs.microsoft.com/visualstudio/subscriptions/vscloud-billing-faq).
4141

4242
## Volume Licensing
4343

44-
Volume Licensing subscriptions are available when an organization needs to purchase a large number of subscriptions. [Read more](https://www.microsoft.com/licensing/how-to-buy/how-to-buy) about purchasing through Volume Licensing.
44+
Volume Licensing subscriptions are available when an organization needs to purchase a large number of subscriptions. Read more about [purchasing through Volume Licensing](https://www.microsoft.com/licensing/how-to-buy/how-to-buy).

subscriptions/solutions/renewing-purchasing-or-canceling/help-renewing/includes/help-me-renew-marketplace.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ sap.id: b324c31f-5d44-4cc2-537a-9c354bc5fbfc
1414

1515
## Renewing subscriptions through Visual Studio Marketplace
1616

17-
As long as your payment method is still valid, your Visual Studio subscriptions through Marketplace are auto renewed. [Read more](https://docs.microsoft.com/visualstudio/subscriptions/vscloud-billing-faq) about Visual Studio Subscriptions Azure billing.
17+
As long as your payment method is still valid, your Visual Studio subscriptions through Marketplace are auto renewed. Read more about [Visual Studio Subscriptions Azure billing](https://docs.microsoft.com/visualstudio/subscriptions/vscloud-billing-faq).
1818

1919
If you do not wish to renew a subscription, reduce your number of paid users in [Visual Studio Marketplace](https://marketplace.visualstudio.com/subscriptions). The new monthly billing amount and reduced users will take effect on the 1st of the next month.

subscriptions/solutions/renewing-purchasing-or-canceling/help-renewing/includes/help-me-renew-microsoft-store.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Help me renew my through the Microsoft store.
2+
title: Help me renew my through the Microsoft store
33
description: Help me renew my Visual Studio subscriptions purchased from the Microsoft store.
44
ms.topic: include
55
ms.assetid: 3b36270b-aa3b-4c05-b12e-4df8d6f823c1

subscriptions/solutions/signing-in/includes/how-do-i-change-my-sign-in-email-cloud-self.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,4 @@ If you purchased one or more cloud subscriptions for yourself, you were set up a
2222
0. Change the email address as desired.
2323
0. Click **Save**.
2424

25-
> [!NOTE]
26-
> This does not change the email address you use to sign in to the Administration Portal.
25+
Note: This does not change the email address you use to sign in to the Administration Portal.

0 commit comments

Comments
 (0)