Create a MS Teams group using an existing SharePoint Online Site

CHOU, DAVID 11 Reputation points
2021-09-29T18:02:03.037+00:00

I have an existing SharePoint Online site already and I want to create a MS teams group using this existing SharePoint Online site. If I create a MS Teams group from scratch, it will automatically create another SharePoint Online site. I want to use this existing site.

Microsoft Teams Development
Microsoft 365 and Office SharePoint For business Windows
Microsoft Teams Microsoft Teams for business Other
{count} votes

4 answers

Sort by: Most helpful
  1. Sharon Zhao-MSFT 25,756 Reputation points Microsoft External Staff
    2021-09-30T04:28:39.797+00:00

    @CHOU, DAVID ,

    You can create a Microsoft Teams from a SharePoint team site as below:

    1. Navigate to a group-connected team site you own
      136466-image.png
    2. Select Add real-time chat in the lower left corner of the home page of your team site.
    3. Select Add real-time chat to open a panel that walks site owners through a quick tour about the value of adding Microsoft Teams capability to their SharePoint sites.
      136571-image.png
    4. Select Continue to view options to add SharePoint resources as tabs in Teams. Select SharePoint pages, news posts, lists, and document libraries to add to Microsoft Teams that enables your team to work in one place.
      136449-image.png
    5. Select Add Teams to create your new Team channel that contains the selected resources as tabs.
    6. Find the resources you selected as tabs in the General channel of your new team.
      136572-image.png
    7. A link to the Teams channel now appears in the site navigation of your SharePoint team site.
      136467-image.png

    For more details, please pay attention to Create a Microsoft Team from a SharePoint team site part in this article.


    If the response is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    2 people found this answer helpful.

  2. Sharath Kumar Aluri 3,071 Reputation points
    2021-09-29T18:30:05.817+00:00

    If you have SharePoint Online Site which is connected to Office 365 Group, then you just create a teams and connecting to existing SharePoint Online site using below script.

    # Input Parameters  
    $siteURL="https://globalsp.sharepoint.com/sites/sha01"  
    $tenantURL="https://globalsp-admin.sharepoint.com"  
    $credential = Get-Credential  
    
    # Connect to Microsoft Teams  
    Connect-MicrosoftTeams -Credential $credential  
    
    # Connectto SharePoint Online Service  
    Connect-SPOService -Url $tenantURL -Credential $credential  
    $site = Get-SPOSite -Identity $siteURL  
    
    # Create Team from the Site associated O365 Group 
    New-Team -GroupId $site.GroupId.Guid  
    

    Thanks & Regards,
    Sharath Aluri

    1 person found this answer helpful.
    0 comments No comments

  3. Charles Yeomans 1 Reputation point
    2022-09-27T06:21:56.733+00:00
    0 comments No comments

  4. Charles Yeomans 1 Reputation point
    2022-09-27T06:21:56.92+00:00
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.