Skip to content

Commit fe3f17c

Browse files
authored
Merge pull request #3 from viananth/patch-2
Fixing spelling mistakes
2 parents 02bbe22 + 5bdf152 commit fe3f17c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tools/AzureRM.BootStrapper/help/about_version_profiles.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,39 +6,39 @@ schema: 2.0.0
66

77
# About Version Profiles
88

9-
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.
9+
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.
1010

1111
The AzureRM.Bootstrapper module provides cmdlets to discover, acquire, and use modules that are appropriate for the azure version profile you are targeting.
1212

1313
You can also use Tags in the AzureRM modules to discover profile information for each module version. Tags for a Profile use the form ```VersionProfile:2015-05```
1414

1515
# Finding appropriate version profiles
1616

17-
Use the ```Get-AzureRMVersionProfile``` cmdlet to discover availabel profile versions, and profile versions supported by an Azure instance.
17+
Use the ```Get-AzureRMVersionProfile``` cmdlet to discover available profile versions, and profile versions supported by an Azure instance.
1818

1919
```Get-AzureRmProfile -ListAvailable``` lists all available version profiles.
2020

2121
```Get-AzureRMProfile -Environment AzureChinaCloud``` lists the profiles supported by the Azure China cloud.
2222

23-
```Get-AzureRMProfile -Endpoint https://manage.myazurestackinstance.com``` lists the profiles supported by the azure instance at the given endpoint
23+
```Get-AzureRMProfile -Endpoint https://manage.myazurestackinstance.com``` lists the profiles supported by the azure instance at the given endpoint.
2424

2525
## Targeting a concrete Azure instance
2626

2727
```Get-AzureRMProfile -Environment AzureChinaCloud``` lists the profiles supported by the Azure China cloud.
2828

2929
Use ```Use-AzureRmProfile -Profile 2015-05``` to install and load cmdlets for one of the listed profiles.
3030

31-
```Get-AzureRMProfile -Endpoint https://manage.myazurestackinstance.com``` lists the profiles supported by the azure instance at the
31+
```Get-AzureRMProfile -Endpoint https://manage.myazurestackinstance.com``` lists the profiles supported by the azure instance at the given endpoint.
3232

3333
## Targeting all Azure Instances
3434

35-
```Get-AzureRMProfile -Common``` lists the profiles that are supported by all Azure endpoints
35+
```Get-AzureRMProfile -Common``` lists the profiles that are supported by all Azure endpoints.
3636

3737
Use ```Use-AzureRmProfile -Profile 2015-05``` to install and load cmdlets for one of the listed profiles.
3838

3939
## Targeting the Latest Stable Features
4040

41-
```Get-AzureRMProfile -Latest``` lists the latest profile supported by any Azure instance
41+
```Get-AzureRMProfile -Latest``` lists the latest profile supported by any Azure instance.
4242

4343
Use ```Use-AzureRmProfile -Profile Latest``` to install and load cmdlets for one of the listed profiles.
4444

@@ -60,7 +60,7 @@ The AzureRM bootstrapper uses the PowerShell Gallery to install and load needed
6060
Use-AzureRmProfile -Profile 2015-05 -Force
6161
```
6262

63-
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.
63+
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.
6464

6565
## Acquire and Load Selected Azure modules using the Bootstrapper
6666

0 commit comments

Comments
 (0)