Files
management-scripts/Fix-ClearOutlookAutoCompleteCache.ps1
T

3 lines
177 B
PowerShell
Raw Normal View History

2021-04-05 20:56:48 -04:00
LogMsg "Clearing Outlook auto complete cache"
Try { Start-Process "outlook.exe" -ArgumentList "/CleanAutoCompleteCache" -ErrorAction Stop }
Catch { LogErr $_.Exception.Message }