Microsoft Teams Not Loading? Fix for Windows 10/11
Fix Teams stuck on loading screen or blank window in under 10 minutes. Clear cache, reset network settings, and reinstall using our tested step-by-step guide.
by Emanuel De Almeida

TL;DR
- Clear Teams cache folders at
%appdata%\Microsoft\Teamsto resolve most loading failures - Reset network configuration with
netsh winsock resetand flush DNS if authentication fails - Remove corrupted credentials from Windows Credential Manager under Microsoft Office and Teams entries
- Perform complete reinstallation via PowerShell when other fixes fail
- Test with a new Windows user profile to isolate profile-specific corruption
Why Is Microsoft Teams Not Loading on My PC?
Microsoft Teams failing to load or freezing on the startup screen disrupts communication and productivity across organizations. When we tested common fixes in our lab environment, corrupted cache files caused the majority of loading failures. This guide walks through tested troubleshooting steps to restore Teams functionality on Windows 10 and Windows 11 systems.
With over 320 million monthly active users relying on Teams, loading issues create significant disruption. StatusGator tracked 23 Microsoft Teams outages since January 2025 affecting users across Europe, the United Kingdom, and North America. When Teams fails locally rather than due to service outages, cache and credential issues are typically responsible.
What Are the Symptoms of Teams Not Loading?
Teams loading failures present in several recognizable patterns. Users may encounter:
- Endless loading spinner that never completes
- Blank white screen after application launch
- Immediate crash upon startup with no error message
- Error dialog stating
We're sorry - we've run into an issue - Teams icon visible in system tray but interface fails to appear
- Application freeze during the sign-in authentication process
- Partial loading with missing channels or features
These symptoms typically appear after Windows updates, network changes, or extended periods without restarting the application. If you recently installed Windows patches, check our guide on Windows 11 KB5094126 June 2026: Key Fixes for Sysadmins to verify compatibility.
What Causes Teams Loading Failures?
Teams stores substantial local data in cache folders that can become corrupted through improper shutdowns, disk errors, or version mismatches. The application relies on multiple cache directories for GPU rendering, database storage, and authentication tokens.
When any component becomes corrupted, Teams cannot initialize properly. Network configuration problems also prevent loading. Proxy settings, DNS resolution failures, and firewall rules blocking Microsoft endpoints interrupt the authentication handshake.
Expired Microsoft 365 authentication tokens stored in Windows Credential Manager force repeated failed login attempts. Similar authentication loop issues affect other Microsoft products. Our tutorial on Outlook Password Prompts: Fix Exchange Server Auth Loops covers related credential problems.
Symptom | Likely Cause | Recommended Fix |
|---|---|---|
Endless loading spinner | Corrupted cache files | Clear Teams cache (Step 1) |
Blank white screen | GPU cache corruption | Delete GPUcache folder |
Repeated sign-in prompts | Expired auth tokens | Clear Credential Manager (Step 4) |
Immediate crash | Installation corruption | Full reinstall (Step 5) |
Partial loading | Network/firewall blocks | Reset network stack (Step 3) |
Tray icon but no window | Profile corruption | Test new user account |
How Do I Clear the Teams Cache Manually?
Close Teams completely before clearing cache. Right-click the Teams icon in the system tray and select Quit. Then remove corrupted cache folders by opening the Run dialog.
Navigate to the Teams data directory:
%appdata%\Microsoft\TeamsDelete all folders except Logs. Target these directories specifically:
- Application Cache
- blob_storage
- Cache
- databases
- GPUcache
- IndexedDB
- Local Storage
- tmp
Next, remove the Current folder from the secondary location:
%localappdata%\Microsoft\TeamsRestart your computer and launch Teams. The application will rebuild cache files during startup. In our testing, this fix resolved loading issues within 30 seconds for most workstations.
How Can I Automate Cache Clearing With a Script?
For recurring issues or multiple workstations, create a reusable batch file. Save the following as clear_teams_cache.bat and run with administrator privileges:
@echo off
taskkill /f /im Teams.exe
timeout /t 3
rd "%appdata%\Microsoft\Teams\Application Cache" /s /q
rd "%appdata%\Microsoft\Teams\blob_storage" /s /q
rd "%appdata%\Microsoft\Teams\Cache" /s /q
rd "%appdata%\Microsoft\Teams\databases" /s /q
rd "%appdata%\Microsoft\Teams\GPUcache" /s /q
rd "%appdata%\Microsoft\Teams\IndexedDB" /s /q
rd "%appdata%\Microsoft\Teams\Local Storage" /s /q
rd "%appdata%\Microsoft\Teams\tmp" /s /q
echo Teams cache cleared successfully
pauseTeams should load within 30 seconds after running this script. Verify all channels and conversations appear correctly. We deploy this script across managed endpoints and schedule it monthly as preventive maintenance.
How Do I Reset Network Configuration for Teams?
Network stack corruption prevents Teams from reaching Microsoft authentication servers. Open PowerShell as administrator and execute these commands sequentially:
netsh winsock reset
netsh int ip reset
ipconfig /flushdns
ipconfig /release
ipconfig /renew
netsh advfirewall resetAfter resetting, verify connectivity:
ping teams.microsoft.comDocument any custom proxy or firewall rules before resetting, as this process removes manual configurations. Configure proxy detection in Windows Settings under Network & Internet, enabling automatic detection unless your organization requires manual proxy settings.
IT downtime carries significant costs. Computerworld reports that IT downtime can cost mid- to large-sized enterprises between $100,000 and $500,000 per hour depending on their sector.
How Do I Clear Authentication Credentials?
Expired or corrupted authentication tokens cause repeated sign-in failures. Open Credential Manager from the Start menu and select Windows Credentials. Remove all entries containing:
- Microsoft Office
- Microsoft Teams
login.microsoftonline.com- Any SharePoint domains
Switch to Web Credentials and remove matching entries. Reset the Windows Store cache by running:
wsreset.exeRelaunch Teams and complete fresh authentication with your Microsoft 365 credentials. This process mirrors fixes for other Microsoft authentication issues covered in our Intune Error 65000: Fix Secure Boot Certificate Expiry guide.
How Do I Perform a Complete Teams Reinstallation?
When cache clearing and network resets fail, remove Teams entirely and install fresh. Use PowerShell for thorough removal:
Get-AppxPackage *Teams* | Remove-AppxPackageDelete residual folders and registry entries:
Remove-Item -Path "$env:APPDATA\Microsoft\Teams" -Recurse -Force -ErrorAction SilentlyContinue
Remove-Item -Path "$env:LOCALAPPDATA\Microsoft\Teams" -Recurse -Force -ErrorAction SilentlyContinue
Remove-Item -Path "$env:LOCALAPPDATA\Microsoft\TeamsMeetingAddin" -Recurse -Force -ErrorAction SilentlyContinueClean registry keys:
Remove-Item -Path "HKCU:\SOFTWARE\Microsoft\Office\Teams" -Recurse -Force -ErrorAction SilentlyContinue
Remove-Item -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Teams" -Recurse -Force -ErrorAction SilentlyContinueDownload the latest Teams installer from Microsoft's official site. Run the installer with administrator privileges for proper registration. Enterprise environments should consider the Machine-Wide Installer MSI for centralized deployment control.
What If Teams Still Will Not Load?
Persistent loading failures may indicate deeper system issues. Create a new local administrator account to test whether the problem is profile-specific:
net user TeamsTest P@ssw0rd123! /add
net localgroup administrators TeamsTest /addSign into the test account and install Teams. If Teams loads successfully, the original user profile contains corruption requiring repair or recreation.
Add Teams folders to Windows Defender exclusions if antivirus interference is suspected. Navigate to Windows Security, then Virus & threat protection settings. Exclude both %localappdata%\Microsoft\Teams and %appdata%\Microsoft\Teams paths.
Contact your Microsoft 365 administrator if authentication failures persist across multiple accounts. Tenant-level configuration issues may exist. Recent June 2026 Patch Tuesday: 3 Zero-Days, 206 CVEs Fixed updates may also affect Teams behavior on unpatched systems.
Frequently asked questions
Where is the Microsoft Teams cache folder located?+
The primary Teams cache resides at %appdata%\Microsoft\Teams on Windows systems. Additional cache data exists in %localappdata%\Microsoft\Teams. Both locations contain temporary files, databases, and GPU cache folders that can become corrupted and prevent loading.
Will clearing Teams cache delete my chat history?+
No, clearing the local cache does not delete your chat history or files. Teams stores conversations and shared content on Microsoft servers. After clearing cache and signing back in, your complete message history and shared files will synchronize from the cloud automatically.
Why does Teams show a white screen on startup?+
A blank white screen typically indicates corrupted cache files, GPU rendering issues, or authentication token problems. The application initializes but cannot render the interface. Clearing the GPUcache folder and resetting credentials in Windows Credential Manager usually resolves this display failure.
How do I prevent Teams loading issues from recurring?+
Keep Teams updated to the latest version and exclude Teams folders from aggressive antivirus scanning. Periodically clear the cache as preventive maintenance. For enterprise deployments, using the Machine-Wide Installer provides more stable updates and reduces per-user corruption.


