File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -166,13 +166,15 @@ Install IoT Edge for Linux on Windows on your target device.
166
166
```powershell
167
167
$msiPath = $([io.Path]::Combine($env:TEMP, 'AzureIoTEdge.msi'))
168
168
$ProgressPreference = 'SilentlyContinue'
169
+ [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
169
170
Invoke-WebRequest "https://aka.ms/AzEFLOWMSI-CR-X64" -OutFile $msiPath
170
171
```
171
172
172
173
* **ARM64**
173
174
```powershell
174
175
$msiPath = $([io.Path]::Combine($env:TEMP, 'AzureIoTEdge.msi'))
175
176
$ProgressPreference = 'SilentlyContinue'
177
+ [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
176
178
Invoke-WebRequest "https://aka.ms/AzEFLOWMSI-CR-ARM64" -OutFile $msiPath
177
179
```
178
180
You can’t perform that action at this time.
0 commit comments