Files
management-scripts/Fix-ClearOutlookAutoCompleteCache.ps1
T

3 lines
183 B
PowerShell

Write-Output "Clearing Outlook auto complete cache"
Try { Start-Process "outlook.exe" -ArgumentList "/CleanAutoCompleteCache" -ErrorAction Stop }
Catch { LogErr $_.Exception.Message }