Forum Discussion
Some custom policies in Skype for Business Online
Hey Bunmi
It's not allowed to modify these both attributes on an existing conferencing policy. Create a new one with this two parameters.
New-CsConferencingPolicy -Identity "Common_NoAV" -AllowIPAudio $false -AllowIPVideo $false
Cheers Andy
Hey Andy,
Thanks for the reply. I did actually create a new CsConferencingPolicy (a screen is in the attached jpg on the original post). The behaviour I encountered was the inability to change some of the parameters in the newly created policy using the set cmdlet, in particular the ones I mentioned in the orginal post.
Rgds Bunmi
- reisiFeb 05, 2017MCTThats right. You can't modify these parameters (AllowIPAudio / AllowIPVideo) on a newly created policy with the "set-csconferencingpolicy" cmdlet. It's just possbile to set these options during the new-csconfernecingpolicy cmdlet.
- Matthew WernerFeb 24, 2017Former Employee
The documentation has been published for the custoemr poliicies in SfB Online. They can be found here:
Client:
Get-CsClientPolicy
Set-CsClientPolicy
New-CsClientPolicy
Grant-CsClientPolicy
Remove-CsClientPolicy
Conferencing:
Get-CsConferencingPolicy
Set-CsConferencingPolicy
New-CsConferencingPolicy
Grant-CsConferencingPolicy
Remove-CsConferencingPolicy
Mobility:
Get-CsMobilityPolicy
Set-CsMobilityPolicy
New-CsMobilityPolicy
Grant-CsMobilityPolicy
Remove-CsMobilityPolicy
- Bunmi AjayiMar 15, 2017Copper Contributor
Thank you for the update guys.