Posted on 04-15-2014 07:44 AM
Is anybody having any success managing Launchpad? It looks like it's an sqlite database, so I'm a little outside my comfort zone trying to manipulate it directly.
(The ask from management is that we try and prevent certain utilities from showing up here, such as those automatically installed by Centrify).
Solved! Go to Solution.
Posted on 04-15-2014 08:44 AM
I have used this command in the past:
sqlite3 ~/Library/Application Support/Dock/*.db "DELETE from apps WHERE title='APPNAME';" && killall Dock
Or you can just delete them all
sqlite3 ~/Library/Application Support/Dock/*.db "DELETE from apps; DELETE from groups WHERE title<>''; DELETE from items WHERE rowid>2;"; killall Dock
Posted on 04-15-2014 08:44 AM
I have used this command in the past:
sqlite3 ~/Library/Application Support/Dock/*.db "DELETE from apps WHERE title='APPNAME';" && killall Dock
Or you can just delete them all
sqlite3 ~/Library/Application Support/Dock/*.db "DELETE from apps; DELETE from groups WHERE title<>''; DELETE from items WHERE rowid>2;"; killall Dock
Posted on 04-15-2014 12:59 PM
I'm begrudgingly going down this path; I wish there were something else, something less hack-y, but it'll do. Thanks for the tip, Jacob - it's working well in the lab.