Community Information
-
WebThumbnailExtension Process is still a problem in Sequoia 15.3
I found this script elsewhere on Reddit and you can create it from scratch in Script Editor if you copy/paste this in. Also, a moderator responded that Microsoft Outlook may be the culprit. Funny I have that installed but do not use it. I will uninstall Outlook and see what it does. Script Editor app, paste this is and Run and/or Save for future use: set previous\_pid to "" -- Initialize a variable to store the previous process ID repeat try set current\_pid to do shell script "pgrep WebThumbnailExtension" \-- Check if the process ID is new if current\_pid is not equal to previous\_pid then display dialog "WebThumbnailExtension is running with new PID: " & current\_pid with title "Process Alert" set previous\_pid to current\_pid -- Update previous process ID to the current one end if on error \-- If the process is not running, clear the stored process ID set previous\_pid to "" end try delay 5 -- Check every 5 seconds end repeat3
© 2025 Indiareply.com. All rights reserved.