Share via

Microsoft Teams won’t launch even after full system rebuild and updates

Amarnath Poddatooru 0 Reputation points
2026-06-13T01:50:55.2233333+00:00

I am unable to launch Microsoft Teams on my Windows device. The application appears in Task Manager as running, but no window ever opens on the desktop.

Troubleshooting steps already completed:

Fully rebuilt/reimaged the laptop

Installed all Windows Updates

Cleared Teams cache (%appdata%\Microsoft\Teams)

  • Uninstalled and reinstalled Teams

Removed Teams Machine-Wide Installer

Tried launching via %localappdata%\Microsoft\Teams\Update.exe --processStart "ms-teams.exe"

Reset Teams from Windows Apps settings

Verified it is not opening off‑screen

Confirmed no error messages appear

Despite all of the above, Teams still does not open. It only shows as a background process in Task Manager.

I need assistance diagnosing why Teams will not launch and resolving the issue.

Microsoft Teams | Microsoft Teams for business | Teams and channels | Manage a team or channel
0 comments No comments

2 answers

Sort by: Most helpful
  1. AI answer

    2026-06-13T01:51:26.42+00:00

    Use the Teams client health guidance and the new Teams launch troubleshooting steps to further diagnose and fix the launch failure.

    1. Check Teams client health insight
    • In the Teams client health dashboard, look for this device/user under Launch failure and review the Insight column.
    • If the insight is:
      • Unable to navigate to Teams endpoint or Timed out waiting for Teams endpoint: Review firewall/proxy configuration and ensure all Teams endpoints are reachable and not blocked.
      • Teams application contains a script error: Sign out of Teams and sign back in.
      • Unsupported OS version: Update Windows to a supported version per Teams client system requirements.
    1. Run the TeamsLaunchCheck.ps1 script (new Teams)
    • Use the TeamsLaunchCheck.ps1 PowerShell script described in the “Resolve issues when starting the new Teams app” article. This script automates all diagnostic checks required to identify why new Teams fails to start.
    • If the script is not available, perform the manual checks below.
    1. Verify Cookies and Cache shell folders are not reparse points
    • Run in PowerShell:
        (gp ([environment]::getfolderpath("Cookies"))).Attributes -match 'ReparsePoint'
        (gp ([environment]::getfolderpath("InternetCache"))).Attributes -match 'ReparsePoint'
      
    • If either returns True, open Registry Editor and go to: Computer\HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders
    • For the affected entry, reset to a non–reparse point path, for example:
      • Cookies → %USERPROFILE%\AppData\Local\Microsoft\Windows\INetCookies
      • Cache → %USERPROFILE%\AppData\Local\Microsoft\Windows\INetCache
    1. Verify TEMP and TMP are not reparse points
    • Run in PowerShell:
        gci env:* | ?{@("TEMP", "TMP").Contains($_.Name)} | %{$_.Value+" - "+((gp $_.Value).Attributes -match 'ReparsePoint')}
      
    • If any result shows True, change the TEMP/TMP environment variable values to a folder path that is not a reparse point.
    1. Check AppData folder permissions and structure
    • Ensure Read permission exists for all required AppData paths. Use Test-Path to verify access, for example:
        Test-Path -Path $env:USERPROFILE\AppData\Local
      
    • Repeat for all directories listed in the resolution (Local, Local\Microsoft, Local\Microsoft\Windows, INetCache, INetCookies, WindowsApps, Packages, Temp, LocalLow, Roaming, etc.).
    • If Test-Path fails due to permissions, have an administrator grant Read permission for the user and Full control for SYSTEM and Administrators on these directories.
    1. Remove invalid files that shadow system folders
    • For each directory listed in the resolution, run:
        Test-Path -Path <full path> -PathType Leaf
      
    • If this returns True, a file exists where a folder is required (for example, a file named Libraries where %AppData%\Microsoft\Windows\Libraries should be a folder).
    • Delete the file and recreate the folder with the same full path.
    1. Check SYSTEM and Administrators permissions
    • For each directory from step 5, verify that the SYSTEM account and Administrators group have Full control. If not, have an administrator adjust ACLs accordingly.
    1. Verify SYSAPPID permission on Teams installation
    • Run in PowerShell:
        Get-AppxPackage MSTeams | %{$_.InstallLocation+" - "+(((Get-Acl $_.InstallLocation).sddl -split "\(" | ?{$_ -match "WIN:/\/\SYSAPPID"} | Measure).count -eq 1)}
      
    • Ensure the result indicates the SYSAPPID permission is present (returns True). If not, adjust permissions or reinstall Teams so that the correct appx permissions are applied.
    1. Check AllowAllTrustedApps policy and Windows build
    • Run winver and compare the OS build with:
      • Windows 11: 21H2 build 22000.2777, 22H2 build 22621.2506
      • Windows 10: 21H2 build 19044.4046, 22H2 build 19045.3636
    • If the build is earlier than these and Teams still won’t start, check the AllowAllTrustedApps policy:
      • In Registry Editor, check AllowAllTrustedApps under:
        • Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock
        • or Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Appx
      • If the value is 0, set it to 1, then try starting Teams again.
    • Alternatively, update Windows to at least Windows 11 version 22H2 OS build 22621.2506 or later so new Teams can start without enabling this policy.
    1. If profile corruption is suspected
    • If the manual checks show no issues but Teams still won’t launch, have a local administrator delete the user profile on the machine as described in the resolution, then sign in again to recreate the profile and reinstall Teams.
    1. If the issue persists
    • After completing these checks, if Teams still appears only as a background process and never shows a window, use the Teams client health dashboard insight plus these diagnostics and contact Microsoft Support for further investigation.

    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

    1 person found this answer helpful.
  2. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

Your answer

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