Enable-WssMsoIntegration

Enable-WssMsoIntegration

Enables integration.

Sintaxis

Parameter Set: Default
Enable-WssMsoIntegration [-MsoUserName] <String> [-Password] <SecureString> [[-Force]] [-Confirm] [-WhatIf] [ <CommonParameters>]

Descripción detallada

The Enable-WssMsoIntegration cmdlet enables integration between Windows Server Essentials and . You must integrate these two products before you can further integrate Windows Server Essentials with and .

Parámetros

-Force

Fuerza que el comando se ejecute sin pedir confirmación al usuario.

Alias

ninguno

¿Requerido?

false

¿Posición?

3

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-MsoUserName<String>

Specifies the user principal name (UPN) of the account with administrator permissions that is to be used to manage the online user accounts.

Alias

ninguno

¿Requerido?

true

¿Posición?

1

Valor predeterminado

ninguno

¿Aceptar canalización?

True (ByValue, ByPropertyName)

¿Aceptar caracteres comodín?

false

-Password<SecureString>

Specifies a password for a user, as a secure string. To obtain a secure string, use the ConvertTo-SecureString cmdlet. For more information, type Get-Help ConvertTo-SecureString. The password that you specify belongs to the online service account specified by the MsoUserName parameter.

Alias

ninguno

¿Requerido?

true

¿Posición?

2

Valor predeterminado

ninguno

¿Aceptar canalización?

True (ByPropertyName)

¿Aceptar caracteres comodín?

false

-Confirm

Solicita confirmación antes de ejecutar el cmdlet.

¿Requerido?

false

¿Posición?

named

Valor predeterminado

falso

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-WhatIf

Muestra lo que sucedería si se ejecutara el cmdlet. El cmdlet no se ejecuta.

¿Requerido?

false

¿Posición?

named

Valor predeterminado

falso

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

<CommonParameters>

Este cmdlet admite los siguientes parámetros comunes: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer y -OutVariable. Para obtener más información, consulte about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Entradas

El tipo de entrada es el tipo de los objetos que se pueden canalizar al cmdlet.

  • System.String

    The MsoUserName in UPN form for the administrator account to be used to administer the online user accounts.

Salidas

El tipo de resultado es el tipo de objetos que emite el cmdlet.

Ejemplos

Example 1: Enable integration

This example enables integration between Windows Server Essentials and . To enable integration, supply an online service account and a secure string that contains the password for that account.

The first command creates a secure string by using the ConvertTo-SecureString cmdlet, and then stores it in the $Password variable. For more information, type Get-Help ConvertTo-SecureString.

The second command enables integration. The command specifies the UPN of the online service account and the password stored in the $Password variable.

PS C:\> $Password = ConvertTo-SecureString "PassWord1" -AsPlainText -Force 
PS C:\> Enable-WssMsoIntegration -MsoUserName "PattiFuller@TSQA.Contoso.com" -Password $Password

Temas relacionados

Disable-WssMsoIntegration

ConvertTo-SecureString