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

SYSVOL Migration (FRS to DFRS)

dfsrmig /setglobalstate 1
repadmin /syncall /force /APed
dfsrdiag pollad
dfsrmig /getmigrationstate

Success?

dfsrmig /setglobalstate 2
repadmin /syncall /force /APed
dfsrdiag pollad
dfsrmig /getmigrationstate

Success?

dfsrmig /setglobalstate 3
repadmin /syncall /force /APed
dfsrdiag pollad
dfsrmig /getmigrationstate

Success?

WMIC command lines

Get BIOS version

wmic bios get smbiosbiosversion

Get Dell Service Tag

wmic bios get serialnumber

psexec \\PCNAME cmd above to get it remotely

Get motherboard info

wmic baseboard get product,manufacturer,version,serialnumber

Back to Top