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
53
53
Get-CMBoundaryGroup -Id 5,6
54
54
```
55
55
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
+
56
68
## PARAMETERS
57
69
58
70
### -DisableWildcardHandling
You can’t perform that action at this time.
0 commit comments