Skip to main content

Rollback users from Teams to Lync Server

 

 Rollback users from Teams to Lync Server 





This scenario apply only for individual or bulk moved users to Teams from Lync/SfB environment using Move-CsUser commands. 

It's not a common scenario where users move back to Lync from Teams but in a situation you might need it. 
Part of the process you may required to find hostedmigrationService related to your tenant. 

$url="https://admin1a.online.lync.com/HostedMigration/hostedmigrationService.svc"

you need to check above highlighted parameter which is related to your account. If you're using Get-TenantInfo.PS1 also one way of find the script and try 


Once you done with $url defined you can go for next step to move user back to onprem 

$cr=Get-Credential

Move-CsUser -Identity "madushka@deployskypeforbusiness.com" -Target "lyncpool.deployskypeforbusiness.com" -Credential $cr -Verbose

Prompt for $cr=credential make sure enter Teams administrator 

Once you move the user successfully can verify using following parameter 

HostingProvider should change it to SRV: 

Bulk users 

Save these users in CSV with a header sipaddress (this can be text with csv)

$Userlist = import-csv .\Userslist.csv
    ForEach ($AllMoveuser in $Userlist)
    {
    Move-CsUser -Identity $AllMoveUser.SipAddress -Target "sipfed.online.lync.com" -ProxyPool "lyncpool.deployskypeforbusiness.com" -Credential $cr -HostedMigrationOverrideUrl $url -Verbose
}


Enjoy! 



Comments

  1. The financial savings from running lights-out could be significant, however shouldn't stop a store from considering automation if reduced labor and operational prices can nonetheless be achieved. Finally, CNC-capable instruments regularly value far more than traditional machine shop instruments. While the automation offered by CNC normally creates financial savings down the road, startup prices could also be} larger. The packages running CNC machines are nonetheless conceived by people; a poorly-written program will lead to a poorly-made half. While most machines could be run by folks without extensive expertise CNC machining , this could mean that operators lack an in-depth understanding of the method behind machine operations. Calling a CNC system a “computer” isn’t completely correct, since it makes use of a special code; nevertheless, the analogy works properly sufficient to see the advantages.

    ReplyDelete

Post a Comment

Popular posts from this blog

Skype for Business announces new Mac client and new mobile sharing experiences

Today Skype for business team publically announce that Skype for business Mac is available to download ( URL ) Its is supporting edge to edge video and full immersive content sharing and viewing, You can get good collaboration experience. And they have updated Skype Operation Framework also about this update. Please refer to them https://www.skypeoperationsframework.com/blogs Enjoy!!!

This Web browser or operating system might not be compatible with Microsoft Silverlight

Crazy error getting from Silver Light while your trying to open newly installed skype for business 2015 on top of Windows Server 2016. Since i installed Silverlight already i was checking control panel the version what i installed its latest and which you can confirm by going to this URL -  https://www.microsoft.com/getsilverlight/locale/en-us/html/Microsoft%20Silverlight%20Release%20History.htm     According to above web and control panel it says same version but my setup cant access the configuration wizard getting following error. to fix nothing do just that add this URL ( https://<pool01FQDN>/cscp to trusted sites and refresh the page then this will go. Note: This error will mislead to check on other browser version and etc and you might check supported version for WinSvr 2016. No required those. Hope this will save your time. Please like FB pages you find more - https://www.facebook.com/office365wwc/   SfB - https://w...

Microsoft Teams user administration using Set-CsOnlineVoicemailUserSettings

Now tenant admin can help with user for custom greetings,  DefaultGreetingPromptOverwrite and  DefaultOofGreetingPromptOverwrite many other user settings on behalf of users. This may help to end users when they are away to set up forwarding rules to another colleague or external number etc. Set-CsUserCallingSettings  -Identity "madushka@abc.com"  -IsForwardingEnabled $True -ForwardingType Immediate -ForwardingTarget taniya@abc.com -ForwardingTargetType SingleTarget - Verbose Note : You must have PhoneSystem License attached for you to have this forwarding to a another person. Basically both users must have PhoneSystem License.  Forward to external number   when you try this make sure you are using E.164 standard for phone numbers.  Set-CsUserCallingSettings -Identity " madushka@abc.com"   -IsForwardingEnabled $True -ForwardingType Simultaneous -ForwardingTargetType SingleTarget -ForwardingTarget "+1365888xxx"  - Verbose Note : You...