Deleting GotoMeeting from Mac

OMG - GotoMeeting was installed on my macbook for some meeting and getting rid of it was quite painful.


Deleted it from the 'Applications' folder - easy enough, but the icon remained in launchpad.


I removed all files from the Library directories with the string 'logmein' in the name.

Found them with: sudo du -a / | grep -i logmein


The freaking icon remained in launchpad.


Finally, I went into the launchpad sqlite3 db and deleted the row for 'Goto Meeting', then 'killall Dock' and now it is gone.


For reference - if you're comfortable deleting from a sqlite3 db:

My launchpad sqlite3 db was at:

/var/folders/n6/r8qy89bd5794r01k8hj2mtnc0000gn/0/com.apple.dock.launchpad/db/db


There's a table named 'apps'

sudo sqlite3 /var/folders/n6/r8qy89bd5794r01k8hj2mtnc0000gn/0/com.apple.dock.launchpad/db/db


from sqlite3 shell:

select * from apps;


locate the 'item_id' for GoTo Meeting (the first integer is item_id)

delete from apps where item_id=nnn; (where nnn is the item_id)

.quit



MacBook Pro 15″, macOS 14.1

Posted on Nov 26, 2023 12:01 PM

Reply

There are no replies.

Deleting GotoMeeting from Mac

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.