Skip to content

Commit 346d418

Browse files
authored
Issue with hyphen - weird char - fixing
1 parent 5fe03b1 commit 346d418

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/storage/files/storage-files-how-to-create-large-file-share.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ To create a storage account with large file shares enabled, use the following co
6565

6666
```azurecli-interactive
6767
## This command creates a large file share–enabled account. It will not support GZRS, GRS, or RA-GRS.
68-
az storage account create –-name <yourStorageAccountName> -g <yourResourceGroup> -l <yourDesiredRegion> –-sku Standard_LRS --kind StorageV2 -enable-large-file-share
68+
az storage account create --name <yourStorageAccountName> -g <yourResourceGroup> -l <yourDesiredRegion> --sku Standard_LRS --kind StorageV2 --enable-large-file-share
6969
```
7070

7171
### PowerShell
@@ -101,7 +101,7 @@ If you receive the error message "Large file shares are not available for the ac
101101
To enable large file shares on your existing account, use the following command. Replace `<yourStorageAccountName>` and `<yourResourceGroup>` with your information.
102102

103103
```azurecli-interactive
104-
az storage account update –-name <yourStorageAccountName> -g <yourResourceGroup> -enable-large-file-share
104+
az storage account update --name <yourStorageAccountName> -g <yourResourceGroup> --enable-large-file-share
105105
```
106106

107107
### PowerShell

0 commit comments

Comments
 (0)