The below did not seem to work either:
This matches a documented issue on ARM-based Windows 11 devices where Microsoft Teams and the new Outlook for Windows might fail to launch or close unexpectedly after Windows security updates released on or after August 11, 2026. It is reported on devices such as Surface Pro 11 and Surface Laptop 7, and is most likely on new or freshly imaged PCs that have not yet installed Microsoft Store updates.
The documented fix is:
- Install the latest Windows update for the VM.
- For Windows 11 24H2/25H2, the issue was resolved in updates released September 8, 2026 or later, including KB5124008.
- For Windows 11 26H1, the issue was resolved in updates released September 8, 2026 or later, including KB5124012.
- If the VM is on an update before September 8, 2026, apply the workaround:
- Open Microsoft Store.
- Select Downloads > Check for updates.
- Install the latest update for the Auto Super Resolution Package to version 1.0.19.0 or later.
Because repair, reset, reinstall, and deleting AppData were already tried, those are unlikely to help if this is the ARM launch issue.
If Teams still does not open after the Windows update and Store package update, two additional documented checks are relevant for launch failures:
- Verify that TEMP and TMP do not point to a reparse point. Use:
PowerShell
gci env:* | ?{@("TEMP", "TMP").Contains($.Name)} | %{$.Value+" - "+((gp $_.Value).Attributes -match 'ReparsePoint')}
If the command returns True for either variable, set that environment variable to a location that is not a reparse point.
2. Verify the account has Read permission to the required AppData paths under:
- %USERPROFILE%\AppData\Local
- %USERPROFILE%\AppData\Local\Microsoft
- %USERPROFILE%\AppData\Local\Microsoft\Windows
- related subfolders such as __Explorer__, __History__, __INetCache__, and __INetCookies__
Also check whether the Windows user profile uses a symlink or mapped drive for C:\Users. A documented Teams startup issue can show a white screen or prevent normal startup when a Unix symlink or mapped drive is used. In that case, Teams should be installed in the default location under user\Appdata. If the mapping must remain, the documented alternative is to use the web version of Microsoft Teams.
AI-generated content may be incorrect. Read our transparency notes for more information.
This matches a documented issue on ARM-based Windows 11 devices where Microsoft Teams and the new Outlook for Windows might fail to launch or close unexpectedly after Windows security updates released on or after August 11, 2026. It is reported on devices such as Surface Pro 11 and Surface Laptop 7, and is most likely on new or freshly imaged PCs that have not yet installed Microsoft Store updates.
The documented fix is:
- Install the latest Windows update for the VM.
- For Windows 11 24H2/25H2, the issue was resolved in updates released September 8, 2026 or later, including KB5124008.
- For Windows 11 26H1, the issue was resolved in updates released September 8, 2026 or later, including KB5124012.
- If the VM is on an update before September 8, 2026, apply the workaround:
- Open Microsoft Store.
- Select Downloads > Check for updates.
- Install the latest update for the Auto Super Resolution Package to version 1.0.19.0 or later.
Because repair, reset, reinstall, and deleting AppData were already tried, those are unlikely to help if this is the ARM launch issue.
If Teams still does not open after the Windows update and Store package update, two additional documented checks are relevant for launch failures:
- Verify that TEMP and TMP do not point to a reparse point. Use:
PowerShell
gci env:* | ?{@("TEMP", "TMP").Contains($.Name)} | %{$.Value+" - "+((gp $_.Value).Attributes -match 'ReparsePoint')}
If the command returns True for either variable, set that environment variable to a location that is not a reparse point.
2. Verify the account has Read permission to the required AppData paths under:
- %USERPROFILE%\AppData\Local
- %USERPROFILE%\AppData\Local\Microsoft
- %USERPROFILE%\AppData\Local\Microsoft\Windows
- related subfolders such as __Explorer__, __History__, __INetCache__, and __INetCookies__
Also check whether the Windows user profile uses a symlink or mapped drive for C:\Users. A documented Teams startup issue can show a white screen or prevent normal startup when a Unix symlink or mapped drive is used. In that case, Teams should be installed in the default location under user\Appdata. If the mapping must remain, the documented alternative is to use the web version of Microsoft Teams.
AI-generated content may be incorrect. Read our transparency notes for more information.