Skip to content

Commit 7c4225f

Browse files
authored
Update storage-files-identity-auth-active-directory-domain-service-enable.md
1 parent 5d8a259 commit 7c4225f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/storage/files/storage-files-identity-auth-active-directory-domain-service-enable.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,18 +130,18 @@ Set-AzStorageAccount -ResourceGroupName "<resource-group-name>" `
130130

131131
To enable Azure AD authentication over SMB with Azure CLI, install the latest CLI version (Version 2.0.70 or newer). For more information about installing Azure CLI, see [Install the Azure CLI](/cli/azure/install-azure-cli).
132132

133-
To create a new storage account, call [az storage account create](/cli/azure/storage/account#az_storage_account_create), and set the `--enable-files-aadds` property to **true**. In the following example, remember to replace the placeholder values with your own values. (If you were using the previous preview module, the parameter for feature enablement is **file-aad**.)
133+
To create a new storage account, call [az storage account create](/cli/azure/storage/account#az_storage_account_create), and set the `--enable-files-aadds` argument. In the following example, remember to replace the placeholder values with your own values. (If you were using the previous preview module, the parameter for feature enablement is **file-aad**.)
134134

135135
```azurecli-interactive
136136
# Create a new storage account
137-
az storage account create -n <storage-account-name> -g <resource-group-name> --enable-files-aadds $true
137+
az storage account create -n <storage-account-name> -g <resource-group-name> --enable-files-aadds
138138
```
139139

140140
To enable this feature on existing storage accounts, use the following command:
141141

142142
```azurecli-interactive
143143
# Update a new storage account
144-
az storage account update -n <storage-account-name> -g <resource-group-name> --enable-files-aadds $true
144+
az storage account update -n <storage-account-name> -g <resource-group-name> --enable-files-aadds
145145
```
146146
---
147147

0 commit comments

Comments
 (0)