File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
sccm-ps/ConfigurationManager Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,18 @@ This command gets multiple boundary groups that are specified by the identifiers
5353Get-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
You can’t perform that action at this time.
0 commit comments