Skip to content

Commit 70aa757

Browse files
authored
Corrected misnamed cmdlet
1 parent 76b793b commit 70aa757

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ResourceManager/DataLakeStore/Commands.DataLakeStore/help/Set-AzureRmDataLakeStoreItemAcl.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The **Set-AzureRmDataLakeStoreItemAcl** cmdlet modifies the access control list
2626

2727
### Example 1: Set the ACL for a file and a folder
2828
```
29-
PS C:\>$ACL = Get-AzureRmDataLakeStoreItemAcl -AccountName "ContosoADL" -Path /
29+
PS C:\>$ACL = Get-AzureRmDataLakeStoreItemAclEntry -AccountName "ContosoADL" -Path /
3030
PS C:\> Set-AzureRmDataLakeStoreItemAcl -AccountName "ContosoADL" -Path "/MyFiles/Test.txt" -Acl $ACL
3131
```
3232

@@ -35,7 +35,7 @@ The second command sets the ACL for the file Test.txt to the one in $ACL.
3535

3636
### Example 2: Set the ACL for folder recursively
3737
```
38-
PS C:\>$ACL = Get-AzureRmDataLakeStoreItemAcl -AccountName "ContosoADL" -Path /Folder1
38+
PS C:\>$ACL = Get-AzureRmDataLakeStoreItemAclEntry -AccountName "ContosoADL" -Path /Folder1
3939
PS C:\> Set-AzureRmDataLakeStoreItemAcl -AccountName "ContosoADL" -Path "/Folder2" -Acl $ACL -Recurse -Concurrency 128
4040
```
4141

0 commit comments

Comments
 (0)