Skip to content

Commit 4d6a421

Browse files
author
Angela Fleischmann
authored
Merge pull request #7711 from Paasin/2206tp-10674394-dbgmps
2206tp 10674394 dbgmps
2 parents 17f67f6 + 224a7d8 commit 4d6a421

1 file changed

Lines changed: 38 additions & 4 deletions

File tree

  • memdocs/configmgr/core/get-started/2022/includes/2206
Lines changed: 38 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,47 @@
11
---
2-
author: mestew
3-
ms.author: mstewart
2+
author: paasin
3+
ms.author: paasin
44
ms.prod: configuration-manager
55
ms.technology: configmgr-core
66
ms.topic: include
77
ms.date: 06/10/2022
88
ms.localizationpriority: medium
99
---
1010

11-
## <a name="bkmk_anchor"></a> Feature Name
12-
<!--CMADO#-->
11+
## <a name="bkmk_dbgmp"></a> Default site boundary group behavior to support cloud source selection
12+
<!--10674394-->
13+
You can now 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.
1314

15+
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.
16+
17+
> [!NOTE]
18+
> 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.
19+
20+
### Set-CMDefaultBoundaryGroup
21+
22+
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.
23+
24+
#### Syntax
25+
26+
```powershell
27+
Set-CMDefaultBoundaryGroup [-IncludeCloudBasedSources <Boolean>] [-PreferCloudBasedSources <Boolean>]
28+
```
29+
30+
#### Examples
31+
32+
```powershell
33+
Set-CMDefaultBoundaryGroup -IncludeCloudBasedSources $true -PreferCloudBasedSources $true
34+
35+
Set-CMDefaultBoundaryGroup -IncludeCloudBasedSources $true
36+
37+
Set-CMDefaultBoundaryGroup -IncludeCloudBasedSources $true -PreferCloudBasedSources $false
38+
```
39+
40+
#### Parameters
41+
42+
- **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.
43+
44+
- **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.
45+
46+
> [!NOTE]
47+
> You can only set this option to true if the parameter IncludeCloudBasedSources is set to true or was already set to true by admin.

0 commit comments

Comments
 (0)