Adobe – Winget

winget install –id=Adobe.Acrobat.Reader.64-bit -e

winget install –id=Adobe.Acrobat.Reader.32-bit -e

Exchange Retention Processing

Start-ManagedFolderAssistant -Identity -FullCrawl

Verify MFA Processing:
$MRMLogs = [xml] ((Export-MailboxDiagnosticLogs <user> -ExtendedProperties).mailboxlog) $MRMLogs.Properties.MailboxTable.Property | ? {$_.Name -like "*ELC*"}

Check MRM mailbox diagnostics
Export-MailboxDiagnosticLogs -ComponentName MRM

Examine mailbox folder statistics
Get-MailboxFolderStatistics <User> -FolderScope inbox -IncludeOldestAndNewestItems -IncludeAnalysis | select name, items*, oldes*, top*

Repeated tracert to text file

Batch file named: tracelog.bat

@echo off
echo Tracert at %date%, %time% >> tracertlog.txt
tracert 8.8.8.8 >> tracertlog.txt
tracelog.bat

Increase PST/OST Limits

Outlook 2016+

HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Outlook\PST

DWORD:

WarnLargeFileSize to 95000 decimal

MaxLargeFileSize to 100000 decimal

Back to Top