Skip to content

Commit fd970d9

Browse files
authored
Merge pull request #32804 from ndrix/patch-5
Adding HTTPS prefix to install links
2 parents 8dc3ae0 + 6ca3e97 commit fd970d9

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/iot-edge/how-to-install-iot-edge-windows.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ This example demonstrates a manual installation with Windows containers:
8181
3. The **Deploy-IoTEdge** command checks that your Windows machine is on a supported version, turns on the containers feature, and then downloads the moby runtime and the IoT Edge runtime. The command defaults to using Windows containers.
8282
8383
```powershell
84-
. {Invoke-WebRequest -useb aka.ms/iotedge-win} | Invoke-Expression; `
84+
. {Invoke-WebRequest -useb https://aka.ms/iotedge-win} | Invoke-Expression; `
8585
Deploy-IoTEdge
8686
```
8787
@@ -90,7 +90,7 @@ This example demonstrates a manual installation with Windows containers:
9090
5. The **Initialize-IoTEdge** command configures the IoT Edge runtime on your machine. The command defaults to manual provisioning with Windows containers.
9191

9292
```powershell
93-
. {Invoke-WebRequest -useb aka.ms/iotedge-win} | Invoke-Expression; `
93+
. {Invoke-WebRequest -useb https://aka.ms/iotedge-win} | Invoke-Expression; `
9494
Initialize-IoTEdge
9595
```
9696

@@ -130,7 +130,7 @@ The following example demonstrates an automatic installation with Windows contai
130130
3. The **Deploy-IoTEdge** command checks that your Windows machine is on a supported version, turns on the containers feature, and then downloads the moby runtime and the IoT Edge runtime. The command defaults to using Windows containers.
131131
132132
```powershell
133-
. {Invoke-WebRequest -useb aka.ms/iotedge-win} | Invoke-Expression; `
133+
. {Invoke-WebRequest -useb https://aka.ms/iotedge-win} | Invoke-Expression; `
134134
Deploy-IoTEdge
135135
```
136136
@@ -139,7 +139,7 @@ The following example demonstrates an automatic installation with Windows contai
139139
6. The **Initialize-IoTEdge** command configures the IoT Edge runtime on your machine. The command defaults to manual provisioning with Windows containers. Use the `-Dps` flag to use the Device Provisioning Service instead of manual provisioning.
140140

141141
```powershell
142-
. {Invoke-WebRequest -useb aka.ms/iotedge-win} | Invoke-Expression; `
142+
. {Invoke-WebRequest -useb https://aka.ms/iotedge-win} | Invoke-Expression; `
143143
Initialize-IoTEdge -Dps
144144
```
145145

@@ -167,7 +167,7 @@ For the latest IoT Edge installation files along with previous versions, see [Az
167167
To install with offline components, use the `-OfflineInstallationPath` parameter as part of the Deploy-IoTEdge command and provide the absolute path to the file directory. For example,
168168

169169
```powershell
170-
. {Invoke-WebRequest -useb aka.ms/iotedge-win} | Invoke-Expression; `
170+
. {Invoke-WebRequest -useb https://aka.ms/iotedge-win} | Invoke-Expression; `
171171
Deploy-IoTEdge -OfflineInstallationPath C:\Downloads\iotedgeoffline
172172
```
173173

@@ -184,7 +184,7 @@ Get-Service iotedge
184184
Examine service logs from the last 5 minutes. If you just finished installing the IoT Edge runtime, you may see a list of errors from the time between running **Deploy-IoTEdge** and **Initialize-IoTEdge**. These errors are expected, as the service is trying to start before being configured.
185185

186186
```powershell
187-
. {Invoke-WebRequest -useb aka.ms/iotedge-win} | Invoke-Expression; Get-IoTEdgeLog
187+
. {Invoke-WebRequest -useb https://aka.ms/iotedge-win} | Invoke-Expression; Get-IoTEdgeLog
188188
```
189189

190190
List running modules. After a new installation, the only module you should see running is **edgeAgent**. After you [deploy IoT Edge modules](how-to-deploy-modules-portal.md), you will see others.
@@ -228,7 +228,7 @@ For more information, see [Update the IoT Edge security daemon and runtime](how-
228228
This example shows an installation that points to an existing configuration file, and uses Windows containers:
229229

230230
```powershell
231-
. {Invoke-WebRequest -useb aka.ms/iotedge-win} | Invoke-Expression; `
231+
. {Invoke-WebRequest -useb https://aka.ms/iotedge-win} | Invoke-Expression; `
232232
Update-IoTEdge
233233
```
234234

0 commit comments

Comments
 (0)