Skip to content

Commit e0eb7e9

Browse files
committed
Added 1 line to 2 powershell code blocks
1 parent 2dc7209 commit e0eb7e9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,13 +166,15 @@ Install IoT Edge for Linux on Windows on your target device.
166166
```powershell
167167
$msiPath = $([io.Path]::Combine($env:TEMP, 'AzureIoTEdge.msi'))
168168
$ProgressPreference = 'SilentlyContinue'
169+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
169170
Invoke-WebRequest "https://aka.ms/AzEFLOWMSI-CR-X64" -OutFile $msiPath
170171
```
171172
172173
* **ARM64**
173174
```powershell
174175
$msiPath = $([io.Path]::Combine($env:TEMP, 'AzureIoTEdge.msi'))
175176
$ProgressPreference = 'SilentlyContinue'
177+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
176178
Invoke-WebRequest "https://aka.ms/AzEFLOWMSI-CR-ARM64" -OutFile $msiPath
177179
```
178180

0 commit comments

Comments
 (0)