Skip to content

Commit

Permalink
Update Get-CMBoundaryGroup.md
Browse files Browse the repository at this point in the history
  • Loading branch information
TheToor authored Sep 24, 2024
1 parent 4ea77ab commit 1a692f6
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions sccm-ps/ConfigurationManager/Get-CMBoundaryGroup.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,18 @@ This command gets multiple boundary groups that are specified by the identifiers
Get-CMBoundaryGroup -Id 5,6
```

### Example 3: Show all Boundary Groups and their Settings:

This command shows all Boundary Groups and their configured settings.

```powershell
Get-CMBoundaryGroup | Format-Table Name, GroupID, `
@{ N = "AllowPeerDownloads"; E = { -not ($_.Flags -band 1) } }, `
@{ N = "SubnetOnly"; E = { ($_.Flags -band 2) -eq 2 } }, `
@{ N = "PreferDistributionPoint"; E = { ($_.Flags -band 4) -eq 4 } }, `
@{ N = "PreferCloud"; E = { ($_.Flags -band 8) -eq 8 } }
```

## PARAMETERS

### -DisableWildcardHandling
Expand Down

0 comments on commit 1a692f6

Please sign in to comment.