I have the same problem, but I found the following solution.
Create a bat file:
..........................
@echo off
set “targetDir=C:\Users\x\x\x\x.2\appsremote\x\SID1f82720c\engine\prof”
echo Deleting all files and folders in %targetDir%
del /q /s “%targetDir%*”
for /d %%p in (“%targetDir%*”) do rd /s /q “%%p”
echo Deletion complete.
....................
Copy the location of the prof file to the proper location.
Run this from windows timer at 1 hour intervals. It should work.
