Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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