Skip to content

Commit

Permalink
Merge branch '11-add-exclude-parameter' of https://github.com/santisq…
Browse files Browse the repository at this point in the history
…/PSADTree into 11-add-exclude-parameter
  • Loading branch information
santisq committed Sep 3, 2024
2 parents 0da772e + 1809f42 commit e86ee1e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions docs/en-US/Get-ADTreeGroupMember.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ Get-ADTreeGroupMember
[-Identity] <String>
[-Server <String>]
[-Depth <Int32>]
[-ShowAll
[-Exclude <String[]>]]
[-ShowAll]
[-Exclude <String[]>]
[<CommonParameters>]
```

Expand Down Expand Up @@ -90,7 +90,7 @@ PS ..\PSADTree\> Get-ADTreeGroupMember TestGroup001 -Server otherDomain
PS ..\PSADTree\> Get-ADTreeGroupMember TestGroup001 -ShowAll
```

By default, previously processed groups will be marked as _"Processed Group"_ and their hierarchy will not be displayed.
By default, previously processed groups will be marked as _"Processed Group"_ and their hierarchy will not be displayed.
The `-ShowAll` switch indicates that the cmdlet should display the hierarchy of all previously processed groups.

> [!NOTE]
Expand All @@ -101,7 +101,7 @@ The `-ShowAll` switch indicates that the cmdlet should display the hierarchy of

### -Depth

Determines the number of nested groups and their members included in the recursion.
Determines the number of nested groups and their members included in the recursion.
By default, only 3 levels of recursion are included.

```yaml
Expand Down Expand Up @@ -201,13 +201,13 @@ Accept wildcard characters: False

### -ShowAll

By default, previously processed groups will be marked as _"Processed Group"_ and their hierarchy will not be displayed.
By default, previously processed groups will be marked as _"Processed Group"_ and their hierarchy will not be displayed.
This switch forces the cmdlet to display the full hierarchy including previously processed groups.

> [!NOTE]
>
> This cmdlet uses a caching mechanism to ensure that Active Directory Groups are only queried once per Identity.
> This caching mechanism is also used to reconstruct the pre-processed group's hierarchy when the `-ShowAll` switch is used, thus not incurring a performance cost.
> This cmdlet uses a caching mechanism to ensure that Active Directory Groups are only queried once per Identity.
> This caching mechanism is also used to reconstruct the pre-processed group's hierarchy when the `-ShowAll` switch is used, thus not incurring a performance cost.
> The intent behind this switch is to not clutter the cmdlet's output by default.

```yaml
Expand Down
10 changes: 5 additions & 5 deletions docs/en-US/Get-ADTreePrincipalGroupMembership.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ PS ..\PSADTree\> Get-ADTreePrincipalGroupMembership john.doe -Server otherDomain
PS ..\PSADTree\> Get-ADTreePrincipalGroupMembership john.doe -ShowAll
```

By default, previously processed groups will be marked as _"Processed Group"_ and their hierarchy will not be displayed.
By default, previously processed groups will be marked as _"Processed Group"_ and their hierarchy will not be displayed.
The `-ShowAll` switch indicates that the cmdlet should display the hierarchy of all previously processed groups.

> [!NOTE]
Expand All @@ -97,7 +97,7 @@ The `-ShowAll` switch indicates that the cmdlet should display the hierarchy of

### -Depth

Determines the number of nested group memberships included in the recursion.
Determines the number of nested group memberships included in the recursion.
By default, only 3 levels of recursion are included.

```yaml
Expand Down Expand Up @@ -181,13 +181,13 @@ Accept wildcard characters: False

### -ShowAll

By default, previously processed groups will be marked as _"Processed Group"_ and their hierarchy will not be displayed.
By default, previously processed groups will be marked as _"Processed Group"_ and their hierarchy will not be displayed.
This switch forces the cmdlet to display the full hierarchy including previously processed groups.

> [!NOTE]
>
> This cmdlet uses a caching mechanism to ensure that Active Directory Groups are only queried once per Identity.
> This caching mechanism is also used to reconstruct the pre-processed group's hierarchy when the `-ShowAll` switch is used, thus not incurring a performance cost.
> This cmdlet uses a caching mechanism to ensure that Active Directory Groups are only queried once per Identity.
> This caching mechanism is also used to reconstruct the pre-processed group's hierarchy when the `-ShowAll` switch is used, thus not incurring a performance cost.
> The intent behind this switch is to not clutter the cmdlet's output by default.

```yaml
Expand Down

0 comments on commit e86ee1e

Please sign in to comment.