Found this article which helped me save a ton of space on FSLogix profile disks.
https://techcommunity.microsoft.com/t5/azure-virtual-desktop/wvd-fslogix-reduce-profile-container-size-exclude-teams-cache/m-p/1503683
You will have to create a redirections.xml to let FSLogix know what it should not redirect to user's VHDX.
https://docs.microsoft.com/en-us/fslogix/manage-profile-content-cncpt
For example create a redirections.xml file and place it in the root of the Azure Files share. Example XML below.
<?xml version="1.0" encoding="UTF-8"?><FrxProfileFolderRedirection>
<Excludes>
<Exclude Copy="0">AppData\Local\SquirrelTemp</Exclude>
<Exclude Copy="0">AppData\Local\Microsoft\Teams\Current\Locales</Exclude>
<Exclude Copy="0">AppData\Local\Microsoft\Teams\Packages\SquirrelTemp</Exclude>
<Exclude Copy="0">AppData\Local\Microsoft\Teams\current\resources\locales</Exclude>
<Exclude Copy="0">AppData\Local\Microsoft\Teams\Current\Locales</Exclude>
<Exclude Copy="0">AppData\Roaming\Microsoft\Teams\Service Worker\CacheStorage</Exclude>
<Exclude Copy="0">AppData\Roaming\Microsoft\Teams\Application Cache</Exclude>
<Exclude Copy="0">AppData\Roaming\Microsoft\Teams\Cache</Exclude>
<Exclude Copy="0">AppData\Roaming\Microsoft Teams\Logs</Exclude>
<Exclude Copy="0">AppData\Roaming\Microsoft\Teams\media-stack</Exclude>
</Excludes>
</FrxProfileFolderRedirection>
Additionally you have to add this to the NMM FSLogix registry entry.
"RedirXMLSourceFolder"="\\ActualStorageAccountName.file.core.windows.net\ActualShareNameProfiles"

Comments (4 comments)