Forum Discussion
Vincent VALENTIN
Aug 23, 2018Iron Contributor
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-busi...
Lxg3702
Aug 23, 2018Brass 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}