File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/DataLakeStore/DataLakeStore/help Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -46,9 +46,9 @@ PS C:\>Remove-AzDataLakeStoreItemAclEntry -AccountName "ContosoADL" -Path / -Ace
46
46
47
47
### Example 3: Remove permissions for an ACE recursively using Acl object
48
48
```
49
- PS C:\>$fullAcl="user:userid1 ,default:user:userid1
50
- PS C:\>$newFullAcl = $fullAcl.Split("{,} ")
51
- PS C:\>Remove-AzDataLakeStoreItemAclEntry -AccountName "ContosoADL" -Path / -Acl $newFullAcl -Recurse -Concurrency 128
49
+ PS C:\>$fullAcl="user:enterpriseObjectID:rwx ,default:user:enterpriseObjectID:rwx"
50
+ PS C:\>$newFullAcl = $fullAcl.Split(", ")
51
+ PS C:\>Remove-AzDataLakeStoreItemAclEntry -AccountName "ContosoADL" -Path / -Acl $newFullAcl -Recurse -Concurrency 128 -ShowProgress -Verbose
52
52
```
53
53
54
54
This command removes the user ACE for Patti Fuller from the root and recursively from all it's subdirectories and files for account ContosoADL.
You can’t perform that action at this time.
0 commit comments