Skip to content

Commit be0ce33

Browse files
committed
Test moniker 1.4
1 parent 1285418 commit be0ce33

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

articles/iot-edge/quickstart.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,24 @@ Run the following PowerShell commands on the target device where you want to dep
148148
:::moniker-end
149149
<!-- end iotedge-2020-11 -->
150150

151+
<!-- iotedge-1.4 -->
152+
:::version 1.4
153+
* **X64/AMD64**
154+
```powershell
155+
$msiPath = $([io.Path]::Combine($env:TEMP, 'AzureIoTEdge.msi'))
156+
$ProgressPreference = 'SilentlyContinue'
157+
Invoke-WebRequest "https://aka.ms/AzEFLOWMSI_1_4_LTS_X64" -OutFile $msiPath
158+
```
159+
160+
* **ARM64**
161+
```powershell
162+
$msiPath = $([io.Path]::Combine($env:TEMP, 'AzureIoTEdge.msi'))
163+
$ProgressPreference = 'SilentlyContinue'
164+
Invoke-WebRequest "https://aka.ms/AzEFLOWMSI_1_4_LTS_ARM64" -OutFile $msiPath
165+
```
166+
:::end
167+
<!-- end iotedge-1.4 -->
168+
151169
1. Install IoT Edge for Linux on Windows on your device.
152170

153171
```powershell

0 commit comments

Comments
 (0)