Before you start
Download and install the Skype for Business Online Connector module, and then restart your computer.
Connect using a Skype for Business Online administrator account name and password
- Open a Windows PowerShell command prompt and run the following commands:
Import-Module SkypeOnlineConnector
$userCredential = Get-Credential
$sfbSession = New-CsOnlineSession -Credential $userCredential
Import-PSSession $sfbSession
Connect using a Skype for Business Online administrator account with multi-factor authentication
Import-Module SkypeOnlineConnector
$sfbSession = New-CsOnlineSession
Import-PSSession $sfbSession
- To turn off transcription for your entire organization, use the following cmdlet:
Set-CsOnlineVoicemailPolicy -EnableTranscription $false
- To disable the transcription for an individual user (in this example: amosmar@contoso.com), use the following cmdlet:
Grant-CsOnlineVoicemailPolicy -PolicyName TranscriptionDisabled -Identity sip:amosmar@contoso.com
Comments
0 comments
Please sign in to leave a comment.