Teams Migration
7 TopicsTeams Wiki content Migration Issue
I am trying to Migrate Teams Wiki Tab Content across the tenant. I found that teams wiki contents are stored in the teams SharePoint hidden list with channel name. Hidden List and .mht file is created when we click on the wiki tab in teams group. Is there any way to perform the Hidden list and .mht file creation using Power shell or C# without clicking the wiki tab.Solved3.7KViews0likes3CommentsSlack to Microsoft Teams Migration related Queries?
Hi, We need to understand how smooth is migrating from slack to teams using this https://learn.microsoft.com/en-us/microsoftteams/migrate-slack-to-teams Have anyone tried this option, any known challenges & how to overcome this? We are exploring options without using any third party tools for this migration603Views0likes0CommentsUnable to Copy Teams Wiki Data across Channel
Unable to move or copy Wiki data across the channels. We traced that the channel wiki data is stored in Hidden SP list(Named ChannelID_wiki) and Mht file in SP Document Library. Is there any Options available in microsoft graph or Teams, to move or copy data from wiki Tab or any feasible option by migrating the hidden SP list or MHT file in Teams Wiki Data to the new Channel.3KViews0likes6CommentsGraph API access without using client id and secret key
I have a C# Application that reads O365 groups and teams Information using graph API and generates a report. I am able to read and write teams info using graph API by authenticating using tenant info, client id and secret key (these values come from Azure APP registration). I am trying to avoid this App Registration step(tool requires client id and user login to get information). Is there any possible way to do authentication without client id?(like https://developer.microsoft.com/en-us/graph/graph-explorer does) https://docs.microsoft.com/en-us/graph/sdks/choose-authentication-providers?tabs=CS Above auth provider link doesn't have any authentication without clientid. Authentication used in the tool: static String[] sca = { "https://graph.microsoft.com/.default" }; var auth = PublicClientApplicationBuilder .Create(clientid) .WithTenantId(tenantid) .Build(); InteractiveAuthenticationProvider authProvider = new InteractiveAuthenticationProvider(auth , sca);Solved11KViews0likes3CommentsUsing UseOAuth switch in the move to Teams command for 100Users password doesnt work all the time
This is my Command below/ first I assign values to $save of the CSV file with list of the user, second run foreach user in users do the move. what happen that script start running and move about 6 to 10 user before it prompt me to add the username and pssword again but it doesnt accept it. I have to click on sign-out and forget password by using the three dots beside my ID then wait up to 6 minutes before it accept the same username and password again. Issue is this is deleting it purpose instead of having this script [t run on its own and save time I have to deal with the password and its doesn't matter if I am using PS_ISE or Skype PS or Windows PS all version 5 and up. Try { $save = Import-Csv yarab1.csv -Header Identity } catch { Write-host "Couldnt find the file!! make sure the file located under C:\Temp - File Name: Yarab1.csv" -BackgroundColor Black -ForegroundColor red Write-Warning "File is missing or The process cannot access the file because it is being used by another process." -WarningAction Inquire } Try { $save | Foreach-Object {Move-CsUser -Identity $.identity -Target sipfed.online.lync.com -Confirm:$false -UseOAuth -MoveToTeams -Force -BypassAudioConferencingCheck -BypassEnterpriseVoiceCheck -HostedMigrationOverrideUrl https://adminxx.online.lync.com/HostedMigration/hostedmigrationService.svc}} catch {Write-Host "An error occurred: $.Identity couldn't be found" -ForegroundColor Yellow -BackgroundColor Red } {catch {Write-Host "Please check if user is enabled in AD or no user object for $.Identity"} Write-Warning "error occurred: moving the user $_.Identity. how do you want to be processed" -WarningAction Inquire }1.4KViews0likes1CommentStaffHub to Teams Migration
Hi i'm trying to move a StaffHub Team to Teams using powershell Connect-StaffHub following the guidance shown on microsofts pages when running cmdlet Move-StaffHubTeam -TeamId i'm getting an error: {"error":{"code":"PreconditionFailed","message":"The team can’t be moved. Office 365 Group creation is disabled for your tenant. Please enable Group Creation for your tenant before attempting to migrate your team to Shifts.","details":[],"innererror":{"code":"GroupCreationNotEnabled"}}} i have used get-OwaMailboxPolicy | select GroupCreationEnabled GroupCreationEnabled -------------------- True Does anyone know what is going wrong? is there another groupcreationenabled i should be looking for? Has anyone successfully moved a StaffHub Rota into Teams/Shifts? thanks RichardSolved1.7KViews0likes1Comment