Files
management-scripts/Fix-ClearOutlookAutoCompleteCache.ps1
T
2021-04-05 20:56:48 -04:00

3 lines
177 B
PowerShell

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