Files
management-scripts/Fix-ClearOutlookAutoCompleteCache.ps1
T

3 lines
183 B
PowerShell
Raw Normal View History

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