Forum Discussion
List skype only users in Teams admin center
- Sep 03, 2019
Utilize Powershell. You can connect using the following. Load up Powershell as admin.
Import-Module SkypeOnlineConnector
$sfbSession = New-CsOnlineSession
Import-PSSession $sfbSession
Then this to filter out to SfBOnly
Get-CsOnlineUser -Filter {TeamsUpgradePolicy -eq "UpgradetoTeams"} |Select-Object DisplayName,UserPrincipalname
The other possible modes are as follow.
Islands
SfBWithTeamsCollab
SfBWithTeamsCollabAndMeetings
Utilize Powershell. You can connect using the following. Load up Powershell as admin.
Import-Module SkypeOnlineConnector
$sfbSession = New-CsOnlineSession
Import-PSSession $sfbSession
Then this to filter out to SfBOnly
Get-CsOnlineUser -Filter {TeamsUpgradePolicy -eq "UpgradetoTeams"} |Select-Object DisplayName,UserPrincipalname
The other possible modes are as follow.
Islands
SfBWithTeamsCollab
SfBWithTeamsCollabAndMeetings
ChrisWebbTechGreat thanks! and how can I do to only display the username?
- Sep 03, 2019I edited my post hsa displayname , userpricipalname which is login name, just remove the displayname, and you'll get just the login.
- damnit95Sep 03, 2019Copper Contributor
ChrisWebbTechThanks a lot for your help!