Examples/Resources/TeamsGuestCallingConfiguration/1-ConfigureTeamsGuestCalling.ps1
<#
This example configures the Teams Guest Calling Configuration. #> Configuration Example { param( [Parameter(Mandatory = $true)] [PSCredential] $credsGlobalAdmin ) Import-DscResource -ModuleName Microsoft365DSC node localhost { TeamsGuestCallingConfiguration 'ConfigureGuestCalling' { Identity = "Global" AllowPrivateCalling = $True Credential = $credsGlobalAdmin } } } |