diff --git a/tools/AzureRM.BootStrapper/help/about_version_profiles.md b/tools/AzureRM.BootStrapper/help/about_version_profiles.md index b84ce7766508..71347f347ad2 100644 --- a/tools/AzureRM.BootStrapper/help/about_version_profiles.md +++ b/tools/AzureRM.BootStrapper/help/about_version_profiles.md @@ -6,7 +6,7 @@ schema: 2.0.0 # About Version Profiles -Different concrete instances of Azure (AzureCloud, AzureChinaCloud, AzureGermanCloud, AzureUSGovernmentCloud, AzureStack) may have different versions of Azure services installed, with different capabilities. Azure Version Profiles provide a mechanism for managing these version differences. Each Azure instance has a discoverable set of supported version profiles. A user can select a version profile supported by the instances of Azure they target, and this version profile corresponds to versions of the Azure PowerShell modules. Users cna then select these Azure PowerShell module versions and be confident that their scripts will work when targeting those Azure instances. +Different concrete instances of Azure (AzureCloud, AzureChinaCloud, AzureGermanCloud, AzureUSGovernmentCloud, AzureStack) may have different versions of Azure services installed, with different capabilities. Azure Version Profiles provide a mechanism for managing these version differences. Each Azure instance has a discoverable set of supported version profiles. A user can select a version profile supported by the instances of Azure they target, and this version profile corresponds to versions of the Azure PowerShell modules. Users can then select these Azure PowerShell module versions and be confident that their scripts will work when targeting those Azure instances. The AzureRM.Bootstrapper module provides cmdlets to discover, acquire, and use modules that are appropriate for the azure version profile you are targeting. @@ -14,13 +14,13 @@ You can also use Tags in the AzureRM modules to discover profile information for # Finding appropriate version profiles -Use the ```Get-AzureRMVersionProfile``` cmdlet to discover availabel profile versions, and profile versions supported by an Azure instance. +Use the ```Get-AzureRMVersionProfile``` cmdlet to discover available profile versions, and profile versions supported by an Azure instance. ```Get-AzureRmProfile -ListAvailable``` lists all available version profiles. ```Get-AzureRMProfile -Environment AzureChinaCloud``` lists the profiles supported by the Azure China cloud. -```Get-AzureRMProfile -Endpoint https://manage.myazurestackinstance.com``` lists the profiles supported by the azure instance at the given endpoint +```Get-AzureRMProfile -Endpoint https://manage.myazurestackinstance.com``` lists the profiles supported by the azure instance at the given endpoint. ## Targeting a concrete Azure instance @@ -28,17 +28,17 @@ Use the ```Get-AzureRMVersionProfile``` cmdlet to discover availabel profile ver Use ```Use-AzureRmProfile -Profile 2015-05``` to install and load cmdlets for one of the listed profiles. -```Get-AzureRMProfile -Endpoint https://manage.myazurestackinstance.com``` lists the profiles supported by the azure instance at the +```Get-AzureRMProfile -Endpoint https://manage.myazurestackinstance.com``` lists the profiles supported by the azure instance at the given endpoint. ## Targeting all Azure Instances -```Get-AzureRMProfile -Common``` lists the profiles that are supported by all Azure endpoints +```Get-AzureRMProfile -Common``` lists the profiles that are supported by all Azure endpoints. Use ```Use-AzureRmProfile -Profile 2015-05``` to install and load cmdlets for one of the listed profiles. ## Targeting the Latest Stable Features -```Get-AzureRMProfile -Latest``` lists the latest profile supported by any Azure instance +```Get-AzureRMProfile -Latest``` lists the latest profile supported by any Azure instance. Use ```Use-AzureRmProfile -Profile Latest``` to install and load cmdlets for one of the listed profiles. @@ -60,7 +60,7 @@ The AzureRM bootstrapper uses the PowerShell Gallery to install and load needed Use-AzureRmProfile -Profile 2015-05 -Force ``` -Checks if the modules associated with the ```2015-05``` profile are installed in the current scope, downloads and installs the modules if necessary, and then loads the modules in the current session. You must open a new PowerShell session to target a different version profile. Using the ```Force``` parameter installs the necessary module swithout prompting. +Checks if the modules associated with the ```2015-05``` profile are installed in the current scope, downloads and installs the modules if necessary, and then loads the modules in the current session. You must open a new PowerShell session to target a different version profile. Using the ```Force``` parameter installs the necessary modules without prompting. ## Acquire and Load Selected Azure modules using the Bootstrapper