If you have multiple Front-End servers, your account will be randomly homed to one of them, and it’s not revealed if you just get-csuser
. You need to Get-CsUserPoolInfo <username>
. This won’t spell it out for you, but you should be able to figure out which FE is which.
Alternatively, Get-CsUserPoolInfo <username> | Select-Object -Expand PrimaryPoolMachinesInPreferredOrder
will ID the server, down to its FQDN. I’m yet to find a way I can move a user to a different Front-End. Call me fussy, but I always like to have MY account on the first FE.
The other way to find the home server’s much more painful. If you get-csuser <username> | fl *
it dumps EVERYTHING.
Piping to “fl *” will often reveal hidden information you didn’t even know was there. Try it sometime!
G.
Did you find a way to move a user to a different Front-End?
i am also desperately looking for this.
We have 5 servers in production and wanted to check the functionality of the each user.
Alas Bob(?), it’s no-can-do. The algorithm for your server login sequence (and thus your home server) is fixed when your account is created.
This article on NextHop confirms that the hash is based upon your SIP URI, so in that case you’re toast, sorry. :-(
http://blogs.technet.com/b/nexthop/archive/2011/05/25/dns-load-balancing-in-lync-server-2010.aspx
(Being the trusting soul I am, I tried anyway: I have a Lync with 2x EE FE and 1x SE FE, and I moved my account 4 times to the SE and back, and ALWAYS ended up homed to the same (unwanted) EE FE. Dammit).
Since its mid 2019 , did you find any way to move a user to a different Skype Front-End within the same pool?
Alas, no. There’s been no apparent change to the way users are distributed across the FE’s and no extra manual control added.
In retrospect I think this quest is probably a bit of a red herring, given how routing groups are designed to fail around a dead server. You’re more likely to get a better health indicator from Get-CsPoolFabricState and Get-CsPoolUpgradeReadinessState. (Note that the latter has been removed from SfBS2019, replaced by Get-CsUpgradeDomainInfo.)
Check out the story I tell in this post in 2016:
https://greiginsydney.com/an-sfb-dcom-error-with-a-difference/
– G.