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
To get the status of SMB Multichannel, use the `az storage account file-service-properties show` command. Remember to replace `<resource-group>` and `<storage-account>` with the appropriate values for your environment before running these Bash commands.
108
108
109
109
```bash
110
-
resourceGroupName="<resource-group>"
111
-
storageAccountName="<storage-account>"
110
+
RESOURCE_GROUP_NAME="<resource-group>"
111
+
STORAGE_ACCOUNT_NAME="<storage-account>"
112
112
113
113
# If you've never enabled or disabled SMB Multichannel, the value for the SMB Multichannel
114
114
# property returned by Azure Files will be null. Null returned values should be interpreted
115
115
# as "default settings are in effect". To make this more user-friendly, the following
116
116
# PowerShell commands replace null values with the human-readable default values.
To get the status of the SMB security settings, use the `az storage account file-service-properties show` command. Remember to replace `<resource-group>` and `<storage-account>` with the appropriate values for your environment before running these Bash commands.
266
266
267
267
```bash
268
-
resourceGroupName="<resource-group>"
269
-
storageAccountName="<storage-account>"
268
+
RESOURCE_GROUP_NAME="<resource-group>"
269
+
STORAGE_ACCOUNT_NAME="<storage-account>"
270
270
271
271
# If you've never changed any SMB security settings, the values for the SMB security
272
272
# settings returned by Azure Files will be null. Null returned values should be interpreted
273
273
# as "default settings are in effect". To make this more user-friendly, the following
274
274
# PowerShell commands replace null values with the human-readable default values.
Depending on your organizations security, performance, and compatibility requirements, you may wish to modify the SMB protocol settings. The following Azure CLI command restricts your SMB file shares to only the most secure options.
@@ -318,8 +318,8 @@ Depending on your organizations security, performance, and compatibility require
318
318
319
319
```azurecli
320
320
az storage account file-service-properties update \
0 commit comments