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