Skip to content

Commit 1c03e5f

Browse files
authored
Merge pull request #6222 from Azure/task-adls-fixhelpfiles
Fix Export-AzureRmDataLakeStoreChildItemProperties help file
2 parents 70679bd + 9b2f70f commit 1c03e5f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/ResourceManager/DataLakeStore/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
- Additional information about change #1
1919
-->
2020
## Current Release
21+
* Fix example for Export-AzureRmDataLakeStoreChildItemProperties
2122
* Fix null parameter exception for Recurse case in Set-AzureRmDataLakeStoreItemAclEntry
2223
* Fix the help files for Set-AzureRmDataLakeStoreItemAclEntry, Set-AzureRmDataLakeStoreItemAcl, Remove-AzureRmDataLakeStoreItemAclEntry
2324

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)