Skip to content

Commit e5d19bf

Browse files
committed
Fix the example for Export-AzureRmDataLakeStoreChildItemProperties
1 parent f12aa3f commit e5d19bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ResourceManager/DataLakeStore/Commands.DataLakeStore/help/Export-AzureRmDataLakeStoreChildItemProperties.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ Get the disk usage and ACL usage for all subdirectories and files under /a. Incl
5050

5151
### Example 2: Get the ACL usage for all subdirectories and files with the consistent ACL hidden
5252
```
53-
PS C:\> $fullAcl="user:c9d53a11-cbd5-4a04-8b7c-0d6e39d7fa35:--x|user::rwx|other::---|group::rwx"
53+
PS C:\> $fullAcl="user:contoso-userid:--x|user::rwx|other::---|group::rwx"
5454
PS C:\> $newFullAcl = $fullAcl.Split("{|}");
55-
PS C:\> Set-AzureRmDataLakeStoreItemAcl -Account rdutta1 -Path /a -Acl $newFullAcl -Recurse -Debug
55+
PS C:\> Set-AzureRmDataLakeStoreItemAcl -Account ContosoADL -Path /a -Acl $newFullAcl -Recurse -Debug
5656
5757
PS C:\> Export-AzureRmDataLakeStoreChildItemProperties -Account ContosoADL -Path /a -OutputPath "C:\Users\contoso\Desktop\DumpFile.txt" -GetAcl -HideConsistentAcl -IncludeFile
5858
```

0 commit comments

Comments
 (0)