Skip to content

Commit 77cf34f

Browse files
authored
Updates to Tools repo for 1811 release (#485)
1 parent ef46722 commit 77cf34f

File tree

1 file changed

+23
-3
lines changed

1 file changed

+23
-3
lines changed

README.md

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@
33

44
These tools are meant for use with **Azure Stack Development Kit** and Integrated Systems
55

6-
## Import Notification
6+
## AzureStack-Tools Release/Tags Notification(s)
77

8-
Tools for Azure Stack - ASDK or Integrated Systems running a build prior to 1804 can be found here
9-
https://github.com/Azure/AzureStack-Tools/releases/tag/PRE-1804
8+
Please follow the below instructions to make sure you are using the right version of AzureStack-Tools repo:
9+
- Tools for Azure Stack - ASDK or Integrated Systems running a build prior to 1811 can be found here
10+
https://github.com/Azure/AzureStack-Tools/releases/tag/PRE-1811
11+
12+
- Tools for Azure Stack - ASDK or Integrated Systems running a build prior to 1804 can be found here
13+
https://github.com/Azure/AzureStack-Tools/releases/tag/PRE-1804
1014

1115
## Tools for using Azure and Azure Stack
1216

@@ -33,19 +37,35 @@ Install-Module -Name AzureStack -RequiredVersion 1.4.0
3337
Obtain the tools by cloning the git repository.
3438

3539
```commandline
40+
# For Azure Stack builds/releases 1811 and later:
3641
git clone https://github.com/Azure/AzureStack-Tools.git --recursive
3742
cd AzureStack-Tools
3843
```
3944

45+
```commandline
46+
# For Azure Stack builds/releases prior to 1811:
47+
git clone --branch PRE-1811 https://github.com/Azure/AzureStack-Tools --recursive
48+
cd AzureStack-Tools
49+
```
50+
4051
Otherwise download the tools as follows:
4152

4253
```powershell
54+
# For Azure Stack builds/releases 1811 and later:
4355
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
4456
invoke-webrequest https://github.com/Azure/AzureStack-Tools/archive/master.zip -OutFile master.zip
4557
expand-archive master.zip -DestinationPath . -Force
4658
cd AzureStack-Tools-master
4759
```
4860

61+
```powershell
62+
# For Azure Stack builds/releases prior to 1811:
63+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
64+
invoke-webrequest https://github.com/Azure/AzureStack-Tools/archive/PRE-1811.zip -OutFile PRE-1811.zip
65+
expand-archive PRE-1811.zip -DestinationPath . -Force
66+
cd AzureStack-Tools-PRE-1811
67+
```
68+
4969
Instructions below are relative to the root of the repo.
5070

5171
## [Azure Resource Manager policy for Azure Stack](Policy)

0 commit comments

Comments
 (0)