I've recently set up Intel RCS to provision AMT 9.0 machines, however during the process I didn't come across any mention of logging/configuring the log levels. After about 3 weeks of running, the box ended up filling up with over 30gb of 1mb log files.
I haven't been able to locate anything in the Intel documentation regarding logfile configuration.
I'm thinking of running a PS script to just delete old logfiles, however I would much rather modify the configuration of the program itself.
This is what I'm thinking of using as a last resort.
Get-ChildItem -Path "C:\ProgramData\Intel_Corporation\RCSConfServer" -Recurse -Force | Where-Object { !$_.PSIsContainer -and $_.CreationTime -lt (Get-Date).AddDays(-15) } | Remove-Item -Force