@@ -12,31 +12,29 @@ ms.date: 02/06/2019
12
12
# Azure Stack Module 1.7.0
13
13
14
14
## Requirements:
15
+
15
16
Minimum supported Azure Stack version is 1901.
16
17
17
- Note: If you are using an earlier version install version 1.7.0
18
+ Note: For earlier versions of Azure Stack check [ Install Azure Stack Powershell ] ( https://docs.microsoft.com/en-us/azure/azure-stack/azure-stack-powershell-install#install-azure-stack-powershell )
18
19
19
20
## Install
20
- ```
21
- # Remove previous versions of AzureStack and AzureRM modules
22
- Uninstall-Module -Name AzureRM -Force
23
- Uninstall-Module -Name Azure.Storage -Force
24
- Uninstall-Module -Name AzureStack -Force
25
- Get-Module -Name "Azs*" -ListAvailable | Uninstall-Module -Force
26
- Get-Module -Name "AzureRm*" -ListAvailable | Uninstall-Module -Force
27
21
28
- # Install the AzureRM.Bootstrapper module. Select Yes when prompted to install NuGet
29
- Install-Module -Name AzureRm.BootStrapper
22
+ ``` powershell
23
+ # Remove previous versions of AzureStack and AzureRM modules
24
+ Get-Module -Name Azs.* -ListAvailable | Uninstall-Module -Force -Verbose
25
+ Get-Module -Name Azure* -ListAvailable | Uninstall-Module -Force -Verbose
30
26
31
27
# Install and import the API Version Modules required by Azure Stack into the current PowerShell session.
32
- Install-Module AzureRM -RequiredVersion 2.4.0
28
+ Install-Module -Name AzureRM -RequiredVersion 2.4.0
33
29
34
30
# Install Azure Stack Admin Module
35
31
Install-Module -Name AzureStack -RequiredVersion 1.7.0
36
32
```
33
+
37
34
## Release Notes
35
+
38
36
* Supported with 1901 update
39
- * This a breaking change release. For details on the breaking changes, refer to https://aka.ms/azspshmigration170
37
+ * This a breaking change release. For details on the breaking changes, refer to < https://aka.ms/azspshmigration170 >
40
38
* Azs.Backup.Admin Module
41
39
* Breaking change: Backup changes to cert-based encryption mode. Support for symmetric keys is deprecated.
42
40
* Azs.Fabric.Admin Module
@@ -47,6 +45,5 @@ Install-Module -Name AzureStack -RequiredVersion 1.7.0
47
45
* Azs.Compute.Admin Module
48
46
* BugFix: Add-AzsPlatformImage, Get-AzsPlatformImage : Calling ConvertTo-PlatformImageObject only in the success path
49
47
* BugFix: Add-AzsVmExtension, Get-AzsVmExtension : Calling ConvertTo-VmExtensionObject only in the success path
50
- * Azs.Storage.Admin Module
48
+ * Azs.Storage.Admin Module
51
49
* Bug fix - New Storage Quota uses defaults if none provided.'
52
-
0 commit comments