Skip to content

Commit dbcd519

Browse files
authored
Update Set-AzDataLakeStoreItemAclEntry.md (#14671)
1 parent cfa5233 commit dbcd519

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/DataLakeStore/DataLakeStore/help/Set-AzDataLakeStoreItemAclEntry.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ PS C:\>Set-AzDataLakeStoreItemAclEntry -AccountName "ContosoADL" -Path / -AceTyp
4747
### Example 3: Modify permissions for an ACE recursively using Acl object
4848
```
4949
PS C:\>$fullAcl="user:userid1:--x,default:user:userid1:--x"
50-
PS C:\>$newFullAcl = $fullAcl.Split("{,}")
51-
PS C:\>Set-AzDataLakeStoreItemAclEntry -AccountName "ContosoADL" -Path / -Acl $newFullAcl -Recurse -Concurrency 128
50+
PS C:\>$newFullAcl = $fullAcl.Split(",")
51+
PS C:\>Set-AzDataLakeStoreItemAclEntry -AccountName "ContosoADL" -Path / -Acl $newFullAcl -Recurse -Concurrency 128 -ShowProgress -Verbose
5252
```
5353

5454
This command recursively modifies the ACE for Patti Fuller to have all permissions to root and all its subdirectories and files.

0 commit comments

Comments
 (0)