Forum Discussion
Jesterize
Sep 26, 2022Copper Contributor
Change the gender of an existing Auto Attendant
Is there a way to switch the gender of an existing Auto Attendant? Looking at the Get-CSAutoAttendant, it shows that the VoiceID is set to Male. The client would like it to be female. Looked at Set-C...
ArunBaranwal
Nov 07, 2022Copper Contributor
Added the Identity of AA where we want to make changes and it works for me:
$autoAttendant=Get-CsAutoAttendant -Identity 706118-38bd-41ed-bb25-b558eaffdce3
$autoAttendant.VoiceID = "Female"
Set-CsAutoAttendant -Instance $autoAttendant
$autoAttendant=Get-CsAutoAttendant -Identity 706118-38bd-41ed-bb25-b558eaffdce3
$autoAttendant.VoiceID = "Female"
Set-CsAutoAttendant -Instance $autoAttendant
DWFL1
Nov 07, 2022Brass Contributor
Thank you, this worked for me as well