Skip to content

Commit 51f9df4

Browse files
Merge pull request #209058 from w-azure/winona-cmdlet
Corrected some wording
2 parents b82ba0d + 6c42ed9 commit 51f9df4

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

articles/iot-hub/iot-hub-create-using-powershell.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,14 @@ ms.custom: devx-track-azurepowershell
1818

1919
You can use Azure PowerShell cmdlets to create and manage Azure IoT hubs. This tutorial shows you how to create an IoT hub with PowerShell.
2020

21-
To complete this how-to, you need an Azure subscription. If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
2221

2322
[!INCLUDE [updated-for-az](../../includes/updated-for-az.md)]
2423

2524
[!INCLUDE [cloud-shell-try-it.md](../../includes/cloud-shell-try-it.md)]
2625

2726
## Connect to your Azure subscription
2827

29-
If you are using the Cloud Shell, you are already logged in to your subscription. If you are running PowerShell locally instead, enter the following command to sign in to your Azure subscription:
28+
If you're using the Cloud Shell, you're already logged in to your subscription. If you're running PowerShell locally instead, enter the following command to sign in to your Azure subscription:
3029

3130
```powershell
3231
# Log into Azure account.
@@ -59,42 +58,42 @@ The name of the IoT hub must be globally unique.
5958

6059
[!INCLUDE [iot-hub-pii-note-naming-hub](../../includes/iot-hub-pii-note-naming-hub.md)]
6160

62-
You can list all the IoT hubs in your subscription using the [Get-AzIotHub](/powershell/module/az.IotHub/Get-azIotHub) command:
61+
To list all the IoT hubs in your subscription, use the [Get-AzIotHub](/powershell/module/az.IotHub/Get-azIotHub) command.
62+
63+
This example shows the S1 Standard IoT Hub you created in the previous step.
6364

6465
```azurepowershell-interactive
6566
Get-AzIotHub
6667
```
6768

68-
This example shows the S1 Standard IoT Hub you created in the previous step.
69-
70-
You can delete the IoT hub using the [Remove-AzIotHub](/powershell/module/az.iothub/remove-aziothub) command:
69+
To delete the IoT hub, use the [Remove-AzIotHub](/powershell/module/az.iothub/remove-aziothub) command.
7170

7271
```azurepowershell-interactive
7372
Remove-AzIotHub `
7473
-ResourceGroupName MyIoTRG1 `
7574
-Name MyTestIoTHub
7675
```
7776

78-
Alternatively, you can remove a resource group and all the resources it contains using the [Remove-AzResourceGroup](/powershell/module/az.Resources/Remove-azResourceGroup) command:
77+
Alternatively, to remove a resource group and all the resources it contains, use the [Remove-AzResourceGroup](/powershell/module/az.Resources/Remove-azResourceGroup) command:
7978

8079
```azurepowershell-interactive
8180
Remove-AzResourceGroup -Name MyIoTRG1
8281
```
8382

8483
## Next steps
8584

86-
Now you have deployed an IoT hub using a PowerShell cmdlet, if you want to explore further, check out the following articles:
85+
Now that you've deployed an IoT hub using a PowerShell cmdlet, explore more articles:
8786

8887
* [PowerShell cmdlets for working with your IoT hub](/powershell/module/az.iothub/).
8988

9089
* [IoT Hub resource provider REST API](/rest/api/iothub/iothubresource).
9190

92-
To learn more about developing for IoT Hub, see the following articles:
91+
Develop for IoT Hub:
9392

9493
* [Introduction to C SDK](iot-hub-device-sdk-c-intro.md)
9594

9695
* [Azure IoT SDKs](iot-hub-devguide-sdks.md)
9796

98-
To further explore the capabilities of IoT Hub, see:
97+
Explore the capabilities of IoT Hub:
9998

10099
* [Deploying AI to edge devices with Azure IoT Edge](../iot-edge/quickstart-linux.md)

0 commit comments

Comments
 (0)