Hi,
Thanks for the reply, my problem was that the -MoveToTeam parameter wasn't supported in my version of SkypeForBusiness so I wanted another way of doing it. I found another PowerShell command - Grant-CsTeamsUpgradePolicy -Identity $user -PolicyName UpgradeToTeams - that seems to work fine. so I'll stick with that
I ran this from a remote ps-session.
$sfbsession=New-CsOnlineSession -Credential get-credential
Import-PSSession $sfbsession -AllowClobber
Grant-CsTeamsUpgradePolicy -Identity $user -PolicyName UpgradeToTeams
Remove-PSSession $sfbsession