Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Get-CMBoundaryGroup #305

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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