Skip to content

Commit e07b666

Browse files
committed
Add appropriate links to LTS
1 parent 9c404ec commit e07b666

File tree

2 files changed

+67
-15
lines changed

2 files changed

+67
-15
lines changed

articles/iot-edge/reference-iot-edge-for-linux-on-windows-functions.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ If you don't have the **AzureEflow** folder in your PowerShell directory, use th
3535
<!-- end iotedge-2018-06 -->
3636

3737
<!-- iotedge-2020-11 -->
38-
:::moniker range=">=iotedge-2020-11"
38+
:::moniker range="iotedge-2020-11"
3939
1. In an elevated PowerShell session, run each of the following commands to download IoT Edge for Linux on Windows.
4040

4141
* **X64/AMD64**
@@ -54,6 +54,26 @@ If you don't have the **AzureEflow** folder in your PowerShell directory, use th
5454
:::moniker-end
5555
<!-- end iotedge-2020-11 -->
5656

57+
<!-- iotedge-1.4 -->
58+
:::moniker range=">=iotedge-1.4"
59+
1. In an elevated PowerShell session, run each of the following commands to download IoT Edge for Linux on Windows.
60+
61+
* **X64/AMD64**
62+
```powershell
63+
$msiPath = $([io.Path]::Combine($env:TEMP, 'AzureIoTEdge.msi'))
64+
$ProgressPreference = 'SilentlyContinue'
65+
Invoke-WebRequest "https://aka.ms/AzEFLOWMSI_1_4_LTS_X64" -OutFile $msiPath
66+
```
67+
68+
* **ARM64**
69+
```powershell
70+
$msiPath = $([io.Path]::Combine($env:TEMP, 'AzureIoTEdge.msi'))
71+
$ProgressPreference = 'SilentlyContinue'
72+
Invoke-WebRequest "https://aka.ms/AzEFLOWMSI_1_4_LTS_ARM64" -OutFile $msiPath
73+
```
74+
:::moniker-end
75+
<!-- iotedge-1.4 -->
76+
5777

5878
1. Install IoT Edge for Linux on Windows on your device.
5979

includes/iot-edge-install-linux-on-windows.md

Lines changed: 46 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -164,22 +164,54 @@ Install IoT Edge for Linux on Windows on your target device.
164164
> [!NOTE]
165165
> The following PowerShell process outlines how to deploy IoT Edge for Linux on Windows onto the local device. To deploy to a remote target device using PowerShell, you can use [Remote PowerShell](/powershell/module/microsoft.powershell.core/about/about_remote) to establish a connection to a remote device and run these commands remotely on that device.
166166
167+
:::moniker-end
168+
<!-- end iotedge-2020-11 -->
169+
170+
<!-- iotedge-2020-11 -->
171+
:::moniker range="iotedge-2020-11"
172+
167173
1. In an elevated PowerShell session, run each of the following commands to download IoT Edge for Linux on Windows.
168174
169-
* **X64/AMD64**
170-
```powershell
171-
$msiPath = $([io.Path]::Combine($env:TEMP, 'AzureIoTEdge.msi'))
172-
$ProgressPreference = 'SilentlyContinue'
173-
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
174-
Invoke-WebRequest "https://aka.ms/AzEFLOWMSI-CR-X64" -OutFile $msiPath
175-
```
176-
177-
* **ARM64**
178-
```powershell
179-
$msiPath = $([io.Path]::Combine($env:TEMP, 'AzureIoTEdge.msi'))
180-
$ProgressPreference = 'SilentlyContinue'
181-
Invoke-WebRequest "https://aka.ms/AzEFLOWMSI-CR-ARM64" -OutFile $msiPath
182-
```
175+
* **X64/AMD64**
176+
```powershell
177+
$msiPath = $([io.Path]::Combine($env:TEMP, 'AzureIoTEdge.msi'))
178+
$ProgressPreference = 'SilentlyContinue'
179+
Invoke-WebRequest "https://aka.ms/AzEFLOWMSI-CR-X64" -OutFile $msiPath
180+
```
181+
182+
* **ARM64**
183+
```powershell
184+
$msiPath = $([io.Path]::Combine($env:TEMP, 'AzureIoTEdge.msi'))
185+
$ProgressPreference = 'SilentlyContinue'
186+
Invoke-WebRequest "https://aka.ms/AzEFLOWMSI-CR-ARM64" -OutFile $msiPath
187+
```
188+
:::moniker-end
189+
<!-- end iotedge-2020-11 -->
190+
191+
<!-- iotedge-1.4 -->
192+
:::moniker range=">=iotedge-1.4"
193+
194+
1. In an elevated PowerShell session, run each of the following commands to download IoT Edge for Linux on Windows.
195+
196+
* **X64/AMD64**
197+
```powershell
198+
$msiPath = $([io.Path]::Combine($env:TEMP, 'AzureIoTEdge.msi'))
199+
$ProgressPreference = 'SilentlyContinue'
200+
Invoke-WebRequest "https://aka.ms/AzEFLOWMSI_1_4_LTS_X64" -OutFile $msiPath
201+
```
202+
203+
* **ARM64**
204+
```powershell
205+
$msiPath = $([io.Path]::Combine($env:TEMP, 'AzureIoTEdge.msi'))
206+
$ProgressPreference = 'SilentlyContinue'
207+
Invoke-WebRequest "https://aka.ms/AzEFLOWMSI_1_4_LTS_ARM64" -OutFile $msiPath
208+
```
209+
210+
:::moniker-end
211+
<!-- end iotedge-1.4 -->
212+
213+
<!-- iotedge-2020-11 -->
214+
:::moniker range=">=iotedge-2020-11"
183215
184216
1. Install IoT Edge for Linux on Windows on your device.
185217

0 commit comments

Comments
 (0)