Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
Set-CMManagementPoint
- Module:
- ConfigurationManager Module
Changes settings for a management point in Configuration Manager.
Syntax
SetByValue (Default)
Set-CMManagementPoint
-InputObject <IResultObject>
[-AllowDevice <Boolean>]
[-ClientConnectionType <ClientConnectionTypes>]
[-DatabaseName <String>]
[-EnableCloudGateway <Boolean>]
[-EnableSsl <Boolean>]
[-GenerateAlert <Boolean>]
[-PassThru]
[-SqlServerFqdn <String>]
[-SqlServerInstanceName <String>]
[-UseComputerAccount]
[-UserName <String>]
[-UseSiteDatabase <Boolean>]
[-DisableWildcardHandling]
[-ForceWildcardHandling]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
SetByName
Set-CMManagementPoint
[-SiteSystemServerName] <String>
[-AllowDevice <Boolean>]
[-ClientConnectionType <ClientConnectionTypes>]
[-DatabaseName <String>]
[-EnableCloudGateway <Boolean>]
[-EnableSsl <Boolean>]
[-GenerateAlert <Boolean>]
[-PassThru]
[-SiteCode <String>]
[-SqlServerFqdn <String>]
[-SqlServerInstanceName <String>]
[-UseComputerAccount]
[-UserName <String>]
[-UseSiteDatabase <Boolean>]
[-DisableWildcardHandling]
[-ForceWildcardHandling]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Description
The Set-CMManagementPoint cmdlet changes settings for a management point in Configuration Manager. A management point is a Configuration Manager site that provides policy and service information to clients and receives configuration data from clients.
Note
Run Configuration Manager cmdlets from the Configuration Manager site drive, for example PS XYZ:\>. For more information, see getting started.
Examples
Example 1: Change management point settings for site system and site code
PS XYZ:\> Set-CMManagementPoint -SiteSystemServerName "CMDEV-TEST02.TSQA.CORP.CONTOSO.COM" -SiteCode "CM2" -EnableSSL $False -UseSiteDatabase $True
This command changes settings for a management point in a Configuration Manager installation. The command specifies the following information about the management point:
- The new management point appears on the site system named CMDEV-TEST02.TSQA.CONTOSO.COM.
- The site has code CM2.
- The management point queries a site database for information.
- The command enables SSL for the management point.
Example 2: Change management point settings for site system and site code, connection type, and database name
PS XYZ:\> Set-CMManagementPoint -SiteSystemServerName "CMDEV-TEST02.TSQA.CORP.CONTOSO.COM " -SiteCode "CM2" -ClientConnectionType InternetAndIntranet -AllowDevice $True -EnableSSL $True -GenerateAlert $False -UseSiteDatabase $False -SQLServerFqdnName "CMDEV-TEST02.TSQA.CORP.CONTOSO.COM" -SQLServerInstanceName "MSSQLServer" -DatabaseName "ContosoSQL01"
This command changes settings for a management point in a Configuration Manager installation. The command specifies the following information about the management point:
- The new management point appears on the site system named CMDEV-TEST02.TSQA.CONTOSO.COM. This name is also the fully qualified domain name for the SQL Server instance named MSSQLServer.
- The site has code CM2.
- The management point accepts connections from Internet and intranet clients and from portable devices.
- The management point has the associated database name ContosoSQL01.
- The command enables SSL for the management point.
Parameters
-AllowDevice
Indicates whether the management point supports device clients.
Parameter properties
| Type: | Boolean |
| Default value: | None |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-ClientConnectionType
Specifies the type of the client connection. The acceptable values for this parameter are:
- Internet
- InternetAndIntranet
- Intranet
Parameter properties
| Type: | ClientConnectionTypes |
| Default value: | None |
| Accepted values: | Internet, Intranet, InternetAndIntranet |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-Confirm
Prompts you for confirmation before running the cmdlet.
Parameter properties
| Type: | SwitchParameter |
| Default value: | False |
| Supports wildcards: | False |
| DontShow: | False |
| Aliases: | cf |
Parameter sets
-DatabaseName
Specifies the name of the site database or site database replica that the management point uses to query for site database information.
Parameter properties
| Type: | String |
| Default value: | None |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-DisableWildcardHandling
This parameter treats wildcard characters as literal character values. You can't combine it with ForceWildcardHandling.
Parameter properties
| Type: | SwitchParameter |
| Default value: | None |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-EnableCloudGateway
The Set-CMManagementPoint cmdlet changes settings for a management point in Configuration Manager. A management point is a Configuration Manager site that provides policy and service information to clients and receives configuration data from clients.
Note
Run Configuration Manager cmdlets from the Configuration Manager site drive, for example PS XYZ:\>. For more information, see getting started.
Parameter properties
| Type: | Boolean |
| Default value: | None |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-EnableSsl
Indicates whether to enable SSL.
Parameter properties
| Type: | Boolean |
| Default value: | None |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-ForceWildcardHandling
This parameter processes wildcard characters and may lead to unexpected behavior (not recommended). You can't combine it with DisableWildcardHandling.
Parameter properties
| Type: | SwitchParameter |
| Default value: | None |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-GenerateAlert
Indicates whether the management point generates health alerts.
Parameter properties
| Type: | Boolean |
| Default value: | None |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-InputObject
Specifies the management point for which you change values by using a management point object. To obtain a management point object, use the Get-CMManagementPoint cmdlet.
Parameter properties
| Type: | IResultObject |
| Default value: | None |
| Supports wildcards: | False |
| DontShow: | False |
| Aliases: | ManagementPoint |
Parameter sets
-PassThru
Add this parameter to return an object that represents the item with which you're working. By default, this cmdlet may not generate any output.
Parameter properties
| Type: | SwitchParameter |
| Default value: | None |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-SiteCode
Specifies the site code of the Configuration Manager site that hosts the site system role.
Parameter properties
| Type: | String |
| Default value: | None |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-SiteSystemServerName
Specifies the name of the server that hosts the site system role.
Parameter properties
| Type: | String |
| Default value: | None |
| Supports wildcards: | False |
| DontShow: | False |
| Aliases: | Name, ServerName |
Parameter sets
-SqlServerFqdn
The Set-CMManagementPoint cmdlet changes settings for a management point in Configuration Manager. A management point is a Configuration Manager site that provides policy and service information to clients and receives configuration data from clients.
Note
Run Configuration Manager cmdlets from the Configuration Manager site drive, for example PS XYZ:\>. For more information, see getting started.
Parameter properties
| Type: | String |
| Default value: | None |
| Supports wildcards: | False |
| DontShow: | False |
| Aliases: | SqlServerFqdnName |
Parameter sets
-SqlServerInstanceName
Specifies the name of the SQL Server instance that clients use to communicate with the site system.
Parameter properties
| Type: | String |
| Default value: | None |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-UseComputerAccount
Indicates that the management point uses its own computer account instead of a domain user account to access site database information.
Parameter properties
| Type: | SwitchParameter |
| Default value: | None |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-UserName
Specifies a domain user account that the management point uses to access site information.
Parameter properties
| Type: | String |
| Default value: | None |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-UseSiteDatabase
Indicates whether the management point queries a site database instead of a site database replica for information.
Parameter properties
| Type: | Boolean |
| Default value: | None |
| Supports wildcards: | False |
| DontShow: | False |
Parameter sets
-WhatIf
Shows what would happen if the cmdlet runs. The cmdlet doesn't run.
Parameter properties
| Type: | SwitchParameter |
| Default value: | False |
| Supports wildcards: | False |
| DontShow: | False |
| Aliases: | wi |
Parameter sets
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
Inputs
Microsoft.ConfigurationManagement.ManagementProvider.IResultObject
Outputs
IResultObject
Related Links
Feedback
Was this page helpful?
