
4 Dec 2019 by Mike Weaver
Inspire: Winning Hearts and Minds
Successful change management requires inspirational leadership. Here’s how to keep your team on track.
A customer recently contacted us to see if they could use our Office 365 Reporting application to list out all Lync Online Users with no Dial-In Conferencing details configured.
Unfortunately our product doesn’t have this ability just yet, but we were interested by the problem and decided to help them out in any way we could.
After a bit of digging around we discovered two methods to get the data out that they required.
The first method was using the Office 365 Web Portal, specifically the Lync Admin Center.
PS C:\Users\Alan> Get-CSOnlineUser alan | Select ACPInfo | fl
AcpInfo : {
08000121234
1234565
uksip.btci.com
bt conferencing uk_emea
http://www.btconferencing.com/globalaccess/?bid=601
}
$credential = Get-Credential
$session = New-CsOnlineSession -Credential $credential
Import-PSSession $session
$Users = Get-CsOnlineUser | Where-Object {!$_.AcpInfo} | select DisplayName, UserPrincipalName, AcpInfo
$Users | Export-Csv "LyncUsersNoConference.csv" -NoTypeInformation