Skip to content

Commit 9fc8ab4

Browse files
authored
Merge pull request #100351 from gunjanj/patch-41
Fixing typos in CLI instuctions
2 parents 50a435b + 346d418 commit 9fc8ab4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 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
@@ -185,4 +185,4 @@ Set-AzStorageShareQuota -ShareName $shareName -Context $ctx -Quota 102400
185185

186186
* [Connect and mount a file share on Windows](storage-how-to-use-files-windows.md)
187187
* [Connect and mount a file share on Linux](storage-how-to-use-files-linux.md)
188-
* [Connect and mount a file share on macOS](storage-how-to-use-files-mac.md)
188+
* [Connect and mount a file share on macOS](storage-how-to-use-files-mac.md)

0 commit comments

Comments
 (0)