Initialize-MgmtSvcProduct

Initialize-MgmtSvcProduct

Configures features for the management service.

Syntax

Parameter Set: ConnectionParameters
Initialize-MgmtSvcProduct -Passphrase <String> [-EnableCeip {No | None | Yes} ] [-Password <String> ] [-Server <String> ] [-UserName <String> ] [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: ConnectionString
Initialize-MgmtSvcProduct -Passphrase <String> [-ConnectionString <String> ] [-EnableCeip {No | None | Yes} ] [-Confirm] [-WhatIf] [ <CommonParameters>]


 

Detailed Description

The Initialize-MgmtSvcProduct cmdlet configures each feature of a management service installation on a single computer by calling the Initialize-MgmtSvcFeature cmdlet for each feature installed on the local computer.

You can run this cmdlet from any computer in the deployment. However, this cmdlet assumes that the database is on the local computer. If the database is on another computer, you must use the Server, UserName, Password, and Database parameters, or a SQL connection string. If you specify a connection string by using the ConnectionString parameter, that value takes precedence over the Server, UserName, Password, and Database parameters.

Parameters

-ConnectionString<String>

Specifies an SQL connection string.

 

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

 

-EnableCeip<EnableCeip>

Enables, when set to Yes, participation in the Customer Experience Improvement Program (CEIP). To disable participation in CEIP, set this value to No.

The acceptable values for this parameter are:

 

No

 

None

 

Yes

 

 

 

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

 

-Passphrase<String>

Specifies the passphrase on the configuration store.

The passphrase should have more than eight characters and contain at least one non-alphanumeric character. Remember to protect the passphrase. You cannot recover the passphrase.

 

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

 

-Password<String>

Specifies a password.

 

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

 

-Server<String>

Specifies the name of the computer on which the SQL database resides.

 

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

 

-UserName<String>

Specifies the name of a user account.

 

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

 

-Confirm

Prompts you for confirmation before executing the command.

 

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

 

-WhatIf

Describes what would happen if you executed the command without actually executing the command.

 

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

 

<CommonParameters>

This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see about_CommonParameters.

Examples

Example 1: Configure features for the management service

This command initializes all features on the computer named ContosoSQL01.

PS C:\> Initialize-MgmtSvcProduct -Server "ContosoSQL01" -UserName "sa" -Password '^^^^^^^' -Passphrase '#######' -EnableCeip Yes -Verbose
 

 

Related topics

Initialize-MgmtSvcFeature