Problem:
Firefox portability files get very large do to large cache directories.
ProfileDisk is getting full with Firefox's cache files
Symptoms:
Long logon times with portability or no settings are saved between sessions
Possible Resolution(s):
Step 1) Create "Portability" Ruleset with following settings if there is none in your "Portability Management" section:
- Replace Local Application Data Mozilla\Firefox\Profiles
- Replace Application Data Mozilla\Firefox
- Exclude Application Data Mozilla\Firefox\Crash Reports
Step 2) Create User Defined script to run (Before ProfileUnity at Logoff)
Use one of the two scrips listed below:
Script A:
*****************************************************
cd %localappdata%\Mozilla\Firefox\Profiles\*def*
rmdir /s /q Cache
rmdir /s /q cache2
*****************************************************
Script B:
*****************************************************
@echo off
cls
for /f "tokens=*" %%G in ('dir /b /s /a:d "%localappdata%\Mozilla\Firefox\Profiles\*.default"') Do (
echo %%G
rmdir /s /q %%G\Cache
rmdir /s /q %%G\cache2
)
*****************************************************
Product: ProfileUnity
Product Version: N/A