You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-stack/asdk/asdk-post-deploy.md
+18-12Lines changed: 18 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,15 +13,17 @@ ms.workload: na
13
13
pms.tgt_pltfrm: na
14
14
ms.devlang: na
15
15
ms.topic: article
16
-
ms.date: 05/29/2018
16
+
ms.date: 06/04/2018
17
17
ms.author: jeffgilb
18
18
ms.reviewer: misainat
19
19
---
20
20
21
21
# Post ASDK installation configuration tasks
22
-
After [installing the ASDK](asdk-install.md), there are a few recommended post-installation configuration changes be made.
23
22
24
-
## Install Azure Stack PowerShell
23
+
After [installing the Azure Stack Development Kit (ASDK)](asdk-install.md), you will need to make a some recommended post-installation configuration changes.
24
+
25
+
## Install Azure Stack PowerShell
26
+
25
27
Azure Stack compatible Azure PowerShell modules are required to work with Azure Stack.
26
28
27
29
PowerShell commands for Azure Stack are installed through the PowerShell Gallery. To register the PSGallery repository, open an elevated PowerShell session and run the following command:
@@ -32,9 +34,9 @@ Set-PSRepository `
32
34
-InstallationPolicy Trusted
33
35
```
34
36
35
-
Azure Stack compatible AzureRM modules are installed through API version profiles. Azure Stack requires the 2017-03-09-profile API version profile, which is available by installing the AzureRM.Bootstrapper module.
36
-
37
-
You can install the latest Azure Stack PowerShell module with or without internet connectivity to the ASDK host computer:
37
+
You can use API version profiles to specify Azure Stack compatible AzureRM modules. API version profiles provide a way to manage version differences between Azure and Azure Stack. An API version profileis a set of AzureRM PowerShell modules with specific API versions. The **AzureRM.Bootstrapper** module that is available through the PowerShell Gallery provides PowerShell cmdlets that are required to work with API version profiles.
38
+
39
+
You can install the latest Azure Stack PowerShell module with or without Internet connectivity to the ASDK host computer:
38
40
39
41
> [!IMPORTANT]
40
42
> Before installing the required version, make sure that you [uninstall any existing Azure PowerShell modules](.\.\azure-stack-powershell-install.md#uninstall-existing-versions-of-powershell).
@@ -50,11 +52,13 @@ Set-PSRepository `
50
52
Use-AzureRmProfile `
51
53
-Profile 2017-03-09-profile -Force
52
54
53
-
Install-Module `
54
-
-Name AzureStack `
55
-
# If you are not running Azure Stack with update 1804 or greater, change the requiredversion parameter value to 1.2.11.
56
-
-RequiredVersion 1.3.0
55
+
# Install Module Version 1.3.0 if Azure Stack is running 1804 at a minimum
If the installation is successful, the AzureRM and AzureStack modules are displayed in the output.
59
63
60
64
-**Without an internet connection** from the ASDK host computer. In a disconnected scenario, you must first download the PowerShell modules to a machine that has internet connectivity using the following PowerShell commands:
@@ -79,9 +83,10 @@ Set-PSRepository `
79
83
# If you are not running Azure Stack with update 1804 or greater, change the requiredversion parameter value to 1.2.11.
80
84
-RequiredVersion 1.3.0
81
85
```
86
+
82
87
Next, copy the downloaded packages to the ASDK computer and register the location as the default repository and install the AzureRM and AzureStack modules from this repository:
83
88
84
-
```PowerShell
89
+
```PowerShell
85
90
$SourceLocation = "<Location on the development kit that contains the PowerShell packages>"
86
91
$RepoName = "MyNuGetSource"
87
92
@@ -98,6 +103,7 @@ Set-PSRepository `
98
103
```
99
104
100
105
## Download the Azure Stack tools
106
+
101
107
[AzureStack-Tools](https://github.com/Azure/AzureStack-Tools) is a GitHub repository that hosts PowerShell modules for managing and deploying resources to Azure Stack. To obtain these tools, clone the GitHub repository or download the AzureStack-Tools folder by running the following script:
102
108
103
109
```PowerShell
@@ -122,7 +128,7 @@ Set-PSRepository `
122
128
## Validate the ASDK installation
123
129
To ensure that your ASDK deployment was successful, you can use the Test-AzureStack cmdlet by following these steps:
124
130
125
-
1. Log in as AzureStack\CloudAdmin on the ASDK host computer.
131
+
1. Log in as AzureStack\AzureStackAdmin on the ASDK host computer.
126
132
2. Open PowerShell as an administrator (not PowerShell ISE).
0 commit comments