Forum Discussion
Switch Skype users configuration from "Audio and HD video" to "Audio and video" using powershell
Hello,
Within Skype user management part, users have by default within there option the ability to do "audio and HD video"
https://docs.microsoft.com/en-us/skypeforbusiness/set-up-skype-for-business-online/let-people-record-their-audio-and-video-conferences
I want to change this setting for all my users but don't found any PowerShell command to do it and found nothing related to it on Internet.
Is there a way to do it and so restrict usage of HD video to only SD video ?
Regards
Vincent VALENTIN
1 Reply
- Lxg3702Brass Contributor
From an MS tech:
- Open the powershell command prompt and run it as an administrator.
- need to download Skype for Business Online, Windows PowerShell Module and install it. Find the below link for download
https://www.microsoft.com/en-sg/download/details.aspx?id=39366
- run the below cmdlets
- Set-ExecutionPolicy RemoteSigned
- Import-Module LyncOnlineConnector
- $credential = Get-Credential ( Enter Global Admin Credentials)
- $session = New-CsOnlineSession -Credential $credential
5.Import-PSSession $session
- Create one .csv file having UserPrincipalName of all users and run the below command adding the file path
$a = Import-Csv "<C:\Users\Admin\Desktop\SFBuser.csv (file:///C:/Users/Admin/Desktop/SFBuser.csv)>"
$a | ForEach-Object {Grant-CsConferencingPolicy -Identity $_.UserPrincipalName -PolicyName BposSAllModalityMinVideoBW}