File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff 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+
1511691 . Install IoT Edge for Linux on Windows on your device.
152170
153171 ``` powershell
You can’t perform that action at this time.
0 commit comments