Skip to content

Commit bac8ef0

Browse files
authored
Merge pull request #52616 from mattbriggs/mdb_20180918_noforce
Removing Force flag from Install-Module -Name AzureStack
2 parents c032f74 + fb418cf commit bac8ef0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

articles/azure-stack/azure-stack-powershell-configure-quickstart.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,21 +54,21 @@ Load the API profile and administrator module for your version of Azure Stack.
5454

5555
```PowerShell
5656
Use-AzureRmProfile -Profile 2018-03-01-hybrid -Force
57-
Install-Module -Name AzureStack -RequiredVersion 1.5.0 -Force
57+
Install-Module -Name AzureStack -RequiredVersion 1.5.0
5858
```
5959

6060
- Azure Stack 1807 or earlier.
6161

6262
```PowerShell
6363
Use-AzureRmProfile -Profile 2017-03-09-profile -Force
64-
Install-Module -Name AzureStack -RequiredVersion 1.4.0 -Force
64+
Install-Module -Name AzureStack -RequiredVersion 1.4.0
6565
```
6666

6767
- Azure Stack 1804 or earlier.
6868

6969
```PowerShell
7070
Use-AzureRmProfile -Profile 2017-03-09-profile -Force
71-
Install-Module -Name AzureStack -RequiredVersion 1.2.11 -Force
71+
Install-Module -Name AzureStack -RequiredVersion 1.2.11
7272
```
7373

7474
Download the Azure Stack tools and connect.

articles/azure-stack/azure-stack-powershell-install.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Run the following PowerShell script to install these modules on your development
9696
# Install and import the API Version Profile required by Azure Stack into the current PowerShell session.
9797
Use-AzureRmProfile -Profile 2018-03-01-hybrid -Force
9898
99-
Install-Module -Name AzureStack -RequiredVersion 1.5.0 -Force
99+
Install-Module -Name AzureStack -RequiredVersion 1.5.0
100100
```
101101
102102
> [!Note]
@@ -107,15 +107,15 @@ Run the following PowerShell script to install these modules on your development
107107
```PowerShell
108108
Install-Module -Name AzureRm.BootStrapper
109109
Use-AzureRmProfile -Profile 2017-03-09-profile -Force
110-
Install-Module -Name AzureStack -RequiredVersion 1.4.0 -Force
110+
Install-Module -Name AzureStack -RequiredVersion 1.4.0
111111
```
112112
113113
- Azure Stack 1804 or earlier.
114114
115115
```PowerShell
116116
Install-Module -Name AzureRm.BootStrapper
117117
Use-AzureRmProfile -Profile 2017-03-09-profile -Force
118-
Install-Module -Name AzureStack -RequiredVersion 1.2.11 -Force
118+
Install-Module -Name AzureStack -RequiredVersion 1.2.11
119119
```
120120
121121
Confirm the installation by running the following command:

0 commit comments

Comments
 (0)