Remove Exchange Log Files:
Remove old Exchange Log Files Artikel
Befehl inkl. Internet Information Service Folder für 14 Tage:
gci ‹C:\Program Files\Microsoft\Exchange Server\V15\Logging›,’C:\inetpub\logs› -Directory | gci -Include ‹*.log›,’*.blg› -Recurse | ? LastWriteTime -lt (Get-Date).AddDays(-14) | Remove-Item
Enable Circular Logging:
Set-MailboxDatabase {Database-Name} -CircularLoggingEnabled $True net stop "Microsoft Exchange Information Store" net start "Microsoft Exchange Information Store"