Skip to content

Commit

Permalink
fix hidden path separators
Browse files Browse the repository at this point in the history
  • Loading branch information
got4416 committed Dec 21, 2024
1 parent 109c7ee commit 1e44dc3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Teams/new-teams-vdi-requirements-deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -346,10 +346,10 @@ You can learn more at [this link](/uwp/api/windows.applicationmodel.startuptasks

All the user settings and configurations are now stored in:

- C:\Users\<username>\AppData\Local\Packages\MSTeams_8wekyb3d8bbwe\
- C:\Users\<username>\AppData\Local\Packages\MSTeams_8wekyb3d8bbwe\Settings\settings.dat
- C:\Users\<username>\AppData\Local\Publishers\8wekyb3d8bbwe\TeamsSharedConfig\app_switcher_settings.json
- C:\Users\<username>\AppData\Local\Publishers\8wekyb3d8bbwe\TeamsSharedConfig\tma_settings.json
- C:\Users\\<username\>\AppData\Local\Packages\MSTeams_8wekyb3d8bbwe\
- C:\Users\\<username\>\AppData\Local\Packages\MSTeams_8wekyb3d8bbwe\Settings\settings.dat
- C:\Users\\<username\>\AppData\Local\Publishers\8wekyb3d8bbwe\TeamsSharedConfig\app_switcher_settings.json
- C:\Users\\<username\>\AppData\Local\Publishers\8wekyb3d8bbwe\TeamsSharedConfig\tma_settings.json

Make sure these folders and files are persisted for proper Teams functioning.

Expand Down Expand Up @@ -401,7 +401,7 @@ The new Teams app takes up about 50% less disk space than the classic version. T

- **App installer**: C:\Program Files\WindowsApps\MSTeams_[version]_[arch]__8wekyb3d8bbwe
Includes the installation package, supports the ability to reset the app, and allows single instancing.
- **User and app data**: C:\Users\<alias>\AppData\Local\Packages\MSTeams_8wekyb3d8bbwe
- **User and app data**: C:\Users\\<alias\>\AppData\Local\Packages\MSTeams_8wekyb3d8bbwe
This includes code (Javascript bundles), code cache, browser caches, databases for user data (like conversations which scales based on usage), and web storage (from domains hosted within Teams, such as Sharepoint, Viva learning, Apps, and so on).

The underlying folder structure is logically similar to Electron-based classic Teams. For non-persistent setups where storage footprint is a consideration, the following guidance applies:
Expand Down Expand Up @@ -452,7 +452,7 @@ All new Teams files that are installed on the computer are signed, so IT admins
This error is caused by GPOs affecting Windows Installer. This includes [**DisableUserInstalls**](/windows/win32/msi/disableuserinstalls), [**DisableMSI**](/windows/win32/msi/disablemsi), or AppLocker policies based on Publisher rule conditions, or a RuleCollection for MSI installs. In this case you must create an exception such as:

- FilePathCondition Path="%PROGRAMFILES%\WINDOWSAPPS\*\MICROSOFTTEAMSMEETINGADDININSTALLER.MSI"
- FilePathCondition Path="%PROGRAMFILES%\WINDOWSAPPS\\*\MICROSOFTTEAMSMEETINGADDININSTALLER.MSI"

**Workaround:** You can install the MSI that is located in the new Teams installation directory from an Admin Command prompt using: 

Expand Down

0 comments on commit 1e44dc3

Please sign in to comment.