Skip to content

Commit 80cad7e

Browse files
committed
simplified module setup instructions
1 parent ecab1fd commit 80cad7e

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

articles/load-balancer/upgrade-basic-standard-with-powershell.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,10 @@ The PowerShell module performs the following functions:
6363
### Prerequisites
6464

6565
- **PowerShell**: A supported version of PowerShell version 7 or higher is recommended for use with the AzureBasicLoadBalancerUpgrade module on all platforms including Windows, Linux, and macOS. However, PowerShell 5.1 on Windows is supported.
66-
- **Az PowerShell Module**: Determine whether you have the latest Az PowerShell module installed
67-
- Install the latest [Az PowerShell module](/powershell/azure/install-azure-powershell)
68-
- **Az.ResourceGraph PowerShell Module**: The Az.ResourceGraph PowerShell module is used to query resource configuration during upgrade and is a separate install from the Az PowerShell module. It is automatically added if you install the `AzureBasicLoadBalancerUpgrade` module using the `Install-Module` command.
6966

7067
### Module Installation
7168

72-
Install the module from [PowerShell gallery](https://www.powershellgallery.com/packages/AzureBasicLoadBalancerUpgrade)
69+
Install the module from [PowerShell Gallery](https://www.powershellgallery.com/packages/AzureBasicLoadBalancerUpgrade)
7370

7471
```powershell
7572
PS C:\> Install-Module -Name AzureBasicLoadBalancerUpgrade -Scope CurrentUser -Repository PSGallery -Force
@@ -95,10 +92,10 @@ PS C:\> Install-Module -Name AzureBasicLoadBalancerUpgrade -Scope CurrentUser -R
9592

9693
## Use the module
9794

98-
1. Use `Connect-AzAccount` to connect to Azure, specifying the Basic Load Balancer's subscription ID if you have more than one subscription.
95+
1. Ensure you have selected the Basic Load Balancer's subscription ID by running `Select-AzSubscription`.
9996

10097
```powershell
101-
PS C:\> Connect-AzAccount -Subscription <SubscriptionId>
98+
PS C:\> Select-AzAccount -Subscription <SubscriptionId>
10299
```
103100
104101
2. Find the Load Balancer you wish to upgrade. Record its name and resource group name.
@@ -112,7 +109,7 @@ PS C:\> Install-Module -Name AzureBasicLoadBalancerUpgrade -Scope CurrentUser -R
112109
>[!TIP]
113110
>Additional parameters for advanced and recovery scenarios can be viewed by running `Get-Help Start-AzBasicLoadBalancerUpgrade -Detailed`
114111
115-
4. Run the Upgrade command.
112+
4. Run the `Start-AzBasicLoadBalancerUpgrade` command, using the following examples for guidance.
116113
117114
### Example: validate a scenario
118115

0 commit comments

Comments
 (0)