Skip to content

Commit 1a692f6

Browse files
authored
Update Get-CMBoundaryGroup.md
1 parent 4ea77ab commit 1a692f6

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

sccm-ps/ConfigurationManager/Get-CMBoundaryGroup.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,18 @@ This command gets multiple boundary groups that are specified by the identifiers
5353
Get-CMBoundaryGroup -Id 5,6
5454
```
5555

56+
### Example 3: Show all Boundary Groups and their Settings:
57+
58+
This command shows all Boundary Groups and their configured settings.
59+
60+
```powershell
61+
Get-CMBoundaryGroup | Format-Table Name, GroupID, `
62+
@{ N = "AllowPeerDownloads"; E = { -not ($_.Flags -band 1) } }, `
63+
@{ N = "SubnetOnly"; E = { ($_.Flags -band 2) -eq 2 } }, `
64+
@{ N = "PreferDistributionPoint"; E = { ($_.Flags -band 4) -eq 4 } }, `
65+
@{ N = "PreferCloud"; E = { ($_.Flags -band 8) -eq 8 } }
66+
```
67+
5668
## PARAMETERS
5769

5870
### -DisableWildcardHandling

0 commit comments

Comments
 (0)