You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/dev-box/how-to-install-dev-box-cli.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Install the Microsoft Dev Box Azure CLI extension
3
3
titleSuffix: Microsoft Dev Box
4
-
description: Learn how to install the Azure CLI and the Microsoft Dev Box CLI extension so you can create Dev Box resources from the command line.
4
+
description: Learn how to create Dev Box resources from the command line. Install the Azure CLI and the devcenter extension to gain access to Dev Box commands.
5
5
services: dev-box
6
6
ms.service: dev-box
7
7
ms.custom: devx-track-azurecli
@@ -12,41 +12,41 @@ ms.date: 04/25/2023
12
12
Customer intent: As a dev infra admin, I want to install the Dev Box CLI extension so that I can create Dev Box resources from the command line.
13
13
---
14
14
15
-
# Configure Microsoft Dev Box from the command-line with the Azure CLI extension
15
+
# Configure Microsoft Dev Box from the command-line with the Azure CLI
16
16
17
-
In addition to the Azure admin portal and the developer portal, you can use the Dev Box Azure CLI extension to create resources. Microsoft Dev Box and Azure Deployment Environments use the same Azure CLI extension, which is called `devcenter`.
17
+
In addition to the Azure admin portal and the developer portal, you can use the Dev Box Azure CLI extension to create resources. Microsoft Dev Box and Azure Deployment Environments use the same Azure CLI extension, which is called *devcenter*.
18
18
19
-
## Install the Dev Box CLI extension
19
+
## Install the devcenter extension
20
20
21
-
To install the Dev Box Azure CLI extension, you first need to install the Azure CLI. The following steps show you how to install the Azure CLI, then the Dev Box CLI extension.
21
+
To install the devcenter extension, you first need to install the Azure CLI. The following steps show you how to install the Azure CLI, then the devcenter extension.
22
22
23
23
1. Download and install the [Azure CLI](/cli/azure/install-azure-cli).
24
24
25
-
1. Install the Dev Box CLI extension
25
+
1. Install the devcenter extension
26
26
```azurecli
27
27
az extension add --name devcenter
28
28
```
29
-
1. Check that the `devcenter` extension is installed
29
+
1. Check that the devcenter extension is installed
30
30
```azurecli
31
31
az extension list
32
32
```
33
-
### Update the Dev Box CLI extension
34
-
You can update the Dev Box CLI extension if you already have it installed.
33
+
### Update the devcenter extension
34
+
You can update the devcenter extension if you already have it installed.
35
35
36
36
To update a version of the extension that's installed
37
37
```azurecli
38
38
az extension update --name devcenter
39
39
```
40
-
### Remove the Dev Box CLI extension
40
+
### Remove the devcenter extension
41
41
42
42
To remove the extension, use the following command
43
43
```azurecli
44
44
az extension remove --name devcenter
45
45
```
46
46
47
-
## Get started with the Dev Box CLI extension
47
+
## Get started with the devcenter extension
48
48
49
-
You might find the following commands useful as you work with the Dev Box CLI extension.
49
+
You might find the following commands useful as you work with Dev Box.
0 commit comments