Posts

Showing posts with the label move user to pool

Move User from a dedicated Pool via Powershell

Image
How to move users to different pool or how to migrate user to another pool. Simple and often forgotten: NOTE: The Get-CsUser command do not offer a -Pool or -SourceFQDN parameter! Therefor you need to use pipelining and filtering. Get-CsUser -Filter {RegistrarPool -eq "CurrentPoolFqdn"} | Move-CsUser -Target " TargetPoolFQDN" - MoveConferenceData NOTE: The Option CurrentPoolFqdn and TargetPoolFqdn must be specified in the form of: server.domain.local MoveConferenceData  : Please don't forget moving the users conferencing data stored in the File Share. Note that you should not use the MoveConferenceData parameter if you are moving users as part of a disaster recovery procedure . Instead, you should rely on the backup service for moving conference data as part of a disaster recovery procedure Care about users conferencing ID is not necessary while moving a user to new pool: When you move a user to an Skype for Business or Lync Server 2...