Question

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
Was it helpful?

Solution

I've run into the same issue recently as well. We had some database issues that hadn't resolved themselves over the weekend, in turn causing a massive influx of 1074kb logfiles (my count was roughly 25,000)

I'm doing something similar on a weekly basis, just incase any new information appears.

I'd recommend checking this answer out as it provides a fair bit of info on deleting files.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top