Microsoft Teams: Major Update –  Classic Microsoft Teams end of availability starts July 1, 2025 – Action Required

Hi All,

Greetings.

Today, I am sharing MAJOR UPDATE related to Microsoft Teams.

MAJOR UPDATE: Classic Microsoft Teams end of availability starts July 1, 2025. Users must upgrade to the new Teams or use Teams on the web to avoid disruptions.

Details

  • Classic Microsoft Teams will be unavailable on Mac and Windows desktops starting July 1, 2025.
  • Starting July 1, 2025, classic Teams users will be blocked from using classic Teams.
  • Users will not be capable of dismiss the blocking message or use the classic Teams desktop app.
  • Users must upgrade to the new Teams or use Teams on the web https://teams.microsoft.com to avoid disruptions.
  • Upgrade users as soon as possible to the new Teams app.

How to check if new Teams installed or not

(Get-appxpackage -name MSTeams).PackageFamilyName -eq "MSTeams_8wekyb3d8bbwe"

  • If above CMDLET returns “True” means new team is installed.
Script to check if new Teams is installed or not
image: Script to check if new Teams is installed or not
  • I executed the above CMDLET on my laptop and it returned “True“. I have new teams updated on my laptop.

How to check if OS is compatible for installing new Teams

#min OS version required
$minOsVersion = [version]"10.0.19041"


$currentWinVer = Get-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\'

if($currentWinVer.ProductName.Contains("LTSC") -or $currentWinVer.ProductName.Contains("LTSB"))
{
    Write-Error "Microsoft Teams is not supported on Windows LTSC/LTSB. Please update to a non 
     LTSC/LTSB version of Windows with a version $minOsVersion or later"
}


$currentOSVesrion = (Get-WmiObject -Class Win32_OperatingSystem).Version

if($currentOSVesrion -lt $minOsVersion)
    {
        Write-Error "Your version of Windows is not supported by New Teams. Please update to 
                     $minOsVersion or later"
    }
    else {
        Write-Output "No issues with the OS version."
    }

code to check OS compatibility for verifying installation of new Teams
image: code to check OS compatibility for verifying installation of new Teams

REFERENCES

Thanks for reading the article !!! Please feel free to discuss in case any issues / suggestions / thoughts / questions !!!

HAVE A GREAT TIME AHEAD !!! LIFE IS BEAUTIFUL 🙂

Prasham Sabadra

LIFE IS VERY BEAUTIFUL. ENJOY THE WHOLE JOURNEY :) Founder of Microsoft 365 Junction, Speaker, Author, Learner, Developer, Passionate Techie. Certified Professional Workshop Facilitator / Public Speaker. Believe in knowledge sharing. Around 20+ years of total IT experience and 17+ years of experience in SharePoint and Microsoft 365 services Please feel free me to contact for any SharePoint / Microsoft 365 queries. I am also very much interested in behavioral (life changing) sessions like motivational speeches, Success, Goal Setting, About Life, How to live Life etc. My book - Microsoft 365 Power Shell hand book for Administrators and Beginners and 100 Power Shell Interview Questions - https://www.amazon.in/Microsoft-Administrators-Beginners-Interview-Questions/dp/9394901639/ref=tmm_pap_swatch_0?_encoding=UTF8&qid=1679029081&sr=8-11

You may also like...

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Discover more from Microsoft 365

Subscribe now to keep reading and get access to the full archive.

Continue reading