The Problem with the Call Quality Poll Interval:
So after getting out of a Skype for Business Online conference, you get a popup by default asking you to rate your call experience each time. This article describes how to turn that feature off or at least tune down how often the poll occurs for your users.
Connecting to S4B Online via Powershell:
- Download the powershell AAD module. I find the best place to grab it is from the powershell gallery.
- Startup Microsoft Azure Active Directory module for windows powershell.
- Create a session variable. When prompted for your username, be sure you specify a global admin:
PS C:\WINDOWS\system32> $session = New-CsOnlineSession -Credential $credential -Verbose
VERBOSE: Determining domain to admin
Please enter the user principal name (ex. User@Domain.Com): max.fuller@peinc.onmicrosoft.com
VERBOSE: AdminDomain = 'peinc.onmicrosoft.com'
VERBOSE: Discovering PowerShell endpoint URI
VERBOSE: TargetUri = 'https://admin0b.online.lync.com/OcsPowershellOAuth'
VERBOSE: GET https://admin0b.online.lync.com/OcsPowershellOAuth with 0-byte payload
VERBOSE: AuthUri = 'https://login.windows.net/common/oauth2/authorize'
VERBOSE: Requesting authentication token
VERBOSE: Success
VERBOSE: Initializing remote session
VERBOSE: Success
- Now import your session
PS C:\WINDOWS\system32> Import-PSSession $session
ModuleType Version Name ExportedCommands
-------— ----— -— -------------—
Script 1.0 tmp_qslhaqtz.uqi {Clear-CsOnlineTelephoneNumberReservation, Complete-CsCceA...
PS C:\WINDOWS\system32>
- Now check the global policy for RateMyCall options:
PS C:\WINDOWS\system32> Get-CsClientPolicy -identity Global | findstr RateMyCall
RateMyCallDisplayPercentage : 0
RateMyCallAllowCustomUserFeedback : False
- One used to be able to tweak RateMycallAllowCustomUserFeedback to $False in order to turn off RateMyCall, these days the variable appears to be read only
PPS C:\WINDOWS\system32> Get-CsClientPolicy -identity Global | findstr RateMyCall
RateMyCallDisplayPercentage : 0
RateMyCallAllowCustomUserFeedback : False
- However, you can just set the Display percentage to 0, which does the same thing
PS C:\WINDOWS\system32> Set-CsClientPolicy -Identity Global -RateMyCallDisplayPercentage 100
PS C:\WINDOWS\system32> Get-CsClientPolicy -identity Global | findstr RateMyCall
RateMyCallDisplayPercentage : 100
RateMyCallAllowCustomUserFeedback : False
PS C:\WINDOWS\system32> Set-CsClientPolicy -Identity Global -RateMyCallDisplayPercentage 0
PS C:\WINDOWS\system32> Get-CsClientPolicy -identity Global | findstr RateMyCall
RateMyCallDisplayPercentage : 0
RateMyCallAllowCustomUserFeedback : False
There now, call polling is effectively turned off.
MFuller, PEI