Microsoft Teams exclusions
Microsoft Teams has a caching folder that can cause bloat on your user profile disk. The following details show how you can set an exclusion using an XML file to prevent both the media stack folder and meeting-addin\Cache
from being stored in the profile container.
You first need to create an XML file with the required exclusions; you can do this using notepad.exe
or another text editing tool. You then enter the required exclusions:
- media-stack folder
- meeting-addin\Cache (
%appdata%\Microsoft\Teams\meeting-addin\Cache
)
The XML file should look something like the following example:
?xml version="1.0" encoding="UTF-8"?> <FrxProfileFolderRedirection ExcludeCommonFolders="0"> <Excludes> <Exclude Copy="0">AppData\Roaming\Microsoft\Teams\media-stack</Exclude> <Exclude Copy="0">AppData\Roaming\Microsoft\Teams\meeting-addin\Cache</Exclude> </Excludes...