File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/DataLakeStore/DataLakeStore/help Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -47,8 +47,8 @@ PS C:\>Set-AzDataLakeStoreItemAclEntry -AccountName "ContosoADL" -Path / -AceTyp
47
47
### Example 3: Modify permissions for an ACE recursively using Acl object
48
48
```
49
49
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
52
52
```
53
53
54
54
This command recursively modifies the ACE for Patti Fuller to have all permissions to root and all its subdirectories and files.
You can’t perform that action at this time.
0 commit comments