6 TeamsGuestCallingConfiguration
Nik Charlebois редактировал(а) эту страницу 2021-10-06 06:17:59 -04:00

# TeamsGuestCallingConfiguration

Parameters

Parameter Attribute DataType Description Allowed Values
Identity Key String The only valid input is Global - the tenant wide configuration Global
AllowPrivateCalling Required Boolean Designates whether guests who have been enabled for Teams can use calling functionality. If $false, guests cannot call.
Credential Required PSCredential Credentials of the Teams Admin

Description

This resource is used to configure the Teams guest calling configuration.

Examples

Example 1

This example configures the Teams Guest Calling Configuration.

Configuration Example
{
    param(
        [Parameter(Mandatory = $true)]
        [PSCredential]
        $credsGlobalAdmin
    )
    Import-DscResource -ModuleName Microsoft365DSC

    node localhost
    {
        TeamsGuestCallingConfiguration GuestCallingConfig
        {
            Identity            = "Global";
            AllowPrivateCalling = $True;
            Credential          = $credsGlobalAdmin;
        }
    }
}