Skip to content

Commit a33218e

Browse files
author
Angela Fleischmann
authored
Merge pull request #8143 from Paasin/patch-1
Update boundary-groups.md
2 parents cfeae08 + 54e25c0 commit a33218e

1 file changed

Lines changed: 44 additions & 0 deletions

File tree

memdocs/configmgr/core/servers/deploy/configure/boundary-groups.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,8 @@ To manage fallback to the default site boundary group:
104104

105105
- Open the properties of a custom boundary group. Change the values for the explicit link to a default site boundary group. When you set a new time in minutes for fallback or block fallback, that change affects only the link you're configuring. Configuration of the explicit link overrides the settings on the **Default Behavior** tab of a default site boundary group.
106106

107+
108+
107109
## Site assignment
108110

109111
You can configure each boundary group with an assigned site for clients.
@@ -125,6 +127,48 @@ For more information on how to configure site assignment, see the following proc
125127
- [Configure site assignment and select site system servers](boundary-group-procedures.md#configure-site-assignment-and-select-site-system-servers)
126128
- [Configure a fallback site for automatic site assignment](boundary-group-procedures.md#configure-a-fallback-site-for-automatic-site-assignment)
127129

130+
131+
## Default site boundary group behavior supports cloud source selection
132+
<!--10674394-->
133+
134+
*(Added in version 2207)*
135+
136+
You can add options via PowerShell to include and prefer cloud management gateway (CMG) management points for the default site boundary group. When a site is set up, there's a default site boundary group created for each site and all the clients are by default mapped to it until they're assigned to some custom boundary group.
137+
138+
Currently on the admin console, you can add references to default site boundary group, but the added references don't have any effect when the client requests for management point list. Starting with technical preview version 2206, you can use PowerShell cmdlets to include and prefer cloud-based sources for clients in the default site boundary group. This action is currently only for the management point role.
139+
140+
> [!NOTE]
141+
> You can't currently configure this behavior from the Configuration Manager console. For more information on configuring this behavior with PowerShell, see the cmdlet details in the following section.
142+
143+
### Set-CMDefaultBoundaryGroup
144+
145+
Use this cmdlet to modify the properties of a default site boundary group. You can set the options to include and prefer the cloud-based sources for the clients in default site boundary group.
146+
147+
#### Syntax
148+
149+
```powershell
150+
Set-CMDefaultBoundaryGroup [-IncludeCloudBasedSources <Boolean>] [-PreferCloudBasedSources <Boolean>]
151+
```
152+
153+
#### Examples
154+
155+
```powershell
156+
Set-CMDefaultBoundaryGroup -IncludeCloudBasedSources $true -PreferCloudBasedSources $true
157+
158+
Set-CMDefaultBoundaryGroup -IncludeCloudBasedSources $true
159+
160+
Set-CMDefaultBoundaryGroup -IncludeCloudBasedSources $true -PreferCloudBasedSources $false
161+
```
162+
163+
#### Parameters
164+
165+
- **IncludeCloudBasedSources**: Used to specify whether admin wants to include the cloud-based sources in the management point list for the clients in default site boundary group.
166+
167+
- **PreferCloudBasedSources**: Used to specify whether admin wants to prefer the cloud-based sources in the management point list for the clients in default site boundary group. On selecting this option, cloud-based servers will be given preference by the clients.
168+
169+
> [!NOTE]
170+
> You can only set this option to true if the parameter IncludeCloudBasedSources is set to true or was already set to true by admin.
171+
128172
## Next steps
129173

130174
- [Boundary group options](boundary-group-options.md)

0 commit comments

Comments
 (0)