remove Folder C:\Program Files\Microsoft\Exchange Server\V15\Logging\lodctr_backups after Installation of Exchange or an CU upgrade to free up disk space
Schlagwort-Archive: Exchange
remove ETL traces of Exchange search engine
cd $exbin
forfiles /P Search\Ceres\Diagnostics\ETLTraces /M *.etl /C „cmd /c del @path“ /D -1
Limit Diagnostic-Service logs
Edit the Microsoft.Exchange.Diagnostics.Service.exe.config file in the bin folder by adding the following line in the appSettings area:
<add key=“MaxDailyPerformancelogDirectorySize“ value=“1024″/>
or lower <add key=“MaxDailyPerformancelogDirectorySize“ value=“512″/>
The value is the maximum space consumed for daily performance logs, in megabytes.
Then restart the MSExchangeDiagnostics service for the change to take effect.
forfiles (remove old logs)
forfiles /P C:\inetpub\logs /S /M *.log /C „cmd /c del @path“ /D -1
use with parameter in cmd
forfiles /P %1 /S /M %2 /C „cmd /c del @path“ /D %3
=logRollover.cmd „C:\inetpub\logs“ „*.log“ -1
blog.mulla.org » Clearing the Exchange 2013 Application Log files.
Well Exchange 2013 has a lot of default performance, application and other component monitoring enabled by default. Stuff which some will never use and other stuff that you *may* use on a blue moon……“Diagnostics/DailyPerformanceLogs”…..
via blog.mulla.org » Clearing the Exchange 2013 Application Log files..