- Flexera Community
- :
- FlexNet Manager
- :
- FlexNet Manager Forum
- :
- Compliance logging retention setting?
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Good morning!
I was wondering if there was a configuration setting to manage the number of log files that are retained in the C:\Program Data\Flexera Software\Compliance\Logging\ folders.
It sure would be nice to only keep XXX number of days instead of it being "forever". I really hope I just missed a setting someplace!
I'm running 2019 R2 on-prem.
Thanks for any help!
Jason
- Mark as New
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Jason,
for some of these folders, the config file has a setting:
Or try an "external" approach, using some script, e.g. (cmd):
Forfiles /P "C:\ProgramData\Flexera Software\Compliance\Logging" /S /M *.log2* /D -30 /C "cmd /c del /q @path"
A line of PowerShell should work as well.
Best regards,
Markward
This thread has been automatically locked due to inactivity.
To continue the discussion, please start a new thread.
- Mark as New
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Jason,
for some of these folders, the config file has a setting:
Or try an "external" approach, using some script, e.g. (cmd):
Forfiles /P "C:\ProgramData\Flexera Software\Compliance\Logging" /S /M *.log2* /D -30 /C "cmd /c del /q @path"
A line of PowerShell should work as well.
Best regards,
Markward
- Mark as New
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you!
