Move Lync user to another pool

Evan Jiang 121 Reputation points
2020-12-21T01:35:41.5+00:00

Hi Team,

How to move some users(list in a txt file) in one pool to another pool in one topology?

Skype for Business
Skype for Business
A Microsoft communications service that provides communications capabilities across presence, instant messaging, audio/video calling, and an online meeting experience that includes audio, video, and web conferencing.
602 questions
0 comments No comments
{count} votes

Accepted answer
  1. Sharon Zhao-MSFT 25,051 Reputation points Microsoft Vendor
    2020-12-21T07:06:46.467+00:00

    @Evan Jiang ,
    You could try the following scripts:

    $users = Get-Content -Path “C:\temp\user.txt”  
    Foreach ($user in $users) {  
    Move-CsUser -Identity $user -Target “TargetPoolFQDN”  
    }  
    

    Besides, there are several different ways to move users to other pool in Lync server. You can refer to this article.

    For the introduction for Get-Content cmdlet, please read this article.


    If the response is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


0 additional answers

Sort by: Most helpful