April 18, 2024
022620 2358 HowtousePow6 - How to use PowerShell cmdlets to disable TEAM for all users of Office 365
Today I am going to show you how to use PowerShell cmdlet to disable TEAM for all users in office 365.

Today I am going to show you how to use PowerShell cmdlet to disable TEAM for all users in office 365.

  1. Download the 64-bit version of the Microsoft Online Services Sign-in Assistant from following link.

    https://www.microsoft.com/en-us/download/details.aspx?id=41950

    022620 2358 HowtousePow1 - How to use PowerShell cmdlets to disable TEAM for all users of Office 365

    022620 2358 HowtousePow2 - How to use PowerShell cmdlets to disable TEAM for all users of Office 365

  2. Double-click the msoidcli_64.msc to start install Microsoft Online Services Sign-in Assistant for IT Professionals RTW.

    022620 2358 HowtousePow3 - How to use PowerShell cmdlets to disable TEAM for all users of Office 365

  3. On the License Agreement page, select I accept the terms in the License Agreement and Privacy Statement, click Install.

    022620 2358 HowtousePow4 - How to use PowerShell cmdlets to disable TEAM for all users of Office 365

  4. On the Completed the Microsoft Online Services Sign-in Assistant Setup Wizard page, click Finish.

    022620 2358 HowtousePow5 - How to use PowerShell cmdlets to disable TEAM for all users of Office 365

  5. Enter following PowerShell cmdlet to Install the Microsoft Azure Active Directory Module for Windows PowerShell.
    
    
    Install-Module MSOnline
    
    
    
  6. If prompted to install the module from PSGallery, type A and press ENTER.

    022620 2358 HowtousePow6 - How to use PowerShell cmdlets to disable TEAM for all users of Office 365

  7. Enter following PowerShell cmdlet to connect to Azure AD for your Office 365 subscription.
    
    
    Connect-MsolService
    
    
    
  8. In the Sign into your account dialog box, type your Office 365 work or school account username, click Next.

    022620 2358 HowtousePow7 - How to use PowerShell cmdlets to disable TEAM for all users of Office 365

  9. In the Sign into your account dialog box, type your Office 365 work or school account password, click Sign in.

    022620 2358 HowtousePow8 - How to use PowerShell cmdlets to disable TEAM for all users of Office 365

  10. If you are using MFA, follow the instructions in the additional dialog boxes to provide more authentication information, such as a verification code.

    022620 2358 HowtousePow9 - How to use PowerShell cmdlets to disable TEAM for all users of Office 365

  11. Make sure there are no errors on the Windows PowerShell prompt.

    022620 2358 HowtousePow10 - How to use PowerShell cmdlets to disable TEAM for all users of Office 365

  12. Using following PowerShell cmdlet to view your available licensing plans.
    
    
    Get-MsolAccountSku
    
    
    

    022620 2358 HowtousePow11 - How to use PowerShell cmdlets to disable TEAM for all users of Office 365

  13. To use following PowerShell cmdlets to disable TEAM for all users.
    
    
    $acctSKU="reseller-account"
    
    
    $x = New-MsolLicenseOptions -AccountSkuId $acctSKU -DisabledPlans "TEAMS_COMMERCIAL_TRIAL"
    
    
    Get-MsolUser | Where-Object {$_.licenses[0].AccountSku.SkuPartNumber -eq  ($acctSKU).Substring($acctSKU.IndexOf(":")+1,  $acctSKU.Length-$acctSKU.IndexOf(":")-1) -and $_.IsLicensed -eq $True} |  Set-MsolUserLicense -LicenseOptions $x
    
    
    

Hope you enjoy this post.

Cary Sun @SifuSun

ca16fbd3199de5f66b829b87082fb970?s=80&d=retro&r=g - How to use PowerShell cmdlets to disable TEAM for all users of Office 365

Author: Cary Sun

Cary Sun has a wealth of knowledge and expertise in data center and deployment solutions. As a Principal Consultant, he likely works closely with clients to help them design, implement, and manage their data center infrastructure and deployment strategies.
With his background in data center solutions, Cary Sun may have experience in server and storage virtualization, network design and optimization, backup and disaster recovery planning, and security and compliance management. He holds CISCO CERTIFIED INTERNETWORK EXPERT (CCIE No.4531) from 1999. Cary is also a Microsoft Most Valuable Professional (MVP), Microsoft Azure MVP, Veeam Vanguard and Cisco Champion. He is a published author with several titles, including blogs on Checkyourlogs.net, and the author of many books.
Cary is a very active blogger at checkyourlogs.net and is permanently available online for questions from the community. His passion for technology is contagious, improving everyone around him at what they do.

Blog site: https://www.checkyourlogs.net
Web site: https://carysun.com
Blog site: https://gooddealmart.com
Twitter: @SifuSun
in: https://www.linkedin.com/in/sifusun/
Amazon Author: https://Amazon.com/author/carysun