Want to highlight a helpful answer? Upvote!

Did someone help you, or did an answer or User Tip resolve your issue? Upvote by selecting the upvote arrow. Your feedback helps others! Learn more about when to upvote >

Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

Two Skype icon after last update

Hi to all, after last Skype update, I have two identical icon of the program on launchpad. Is possibile and how to delete one of them?

MacBook Pro, Mac OS X (10.7)

Posted on Aug 8, 2011 3:15 PM

Reply
9 replies

Aug 8, 2011 6:44 PM in response to Simon UK

  1. Run Terminal
  2. Type
    ls -altr ~/Library/Application\ Support/Dock/*.db
  3. Open the last file with sqlite3:
    sqlite3 "/Users/<you>/Library/Application Support/Dock/<some big long number>.db"
  4. In SQLite type:
    select * from apps where title = 'Skype';
  5. You should have two items listed like this:
    num1|Skype|com.skype.skype||9|330297564.0|bookh
    num2|Skype|com.skype.skype||9|333549403.0|bookh
  6. Pick the 2nd one and type:
    delete from apps where item_id = num2;
  7. Now type:
    delete from item where item_id = num2;
  8. Exit SQLite by typing:
    .quit
  9. Run Activity Monitor
  10. Find "Dock", select it, and click the Quit Process button.


Now you should have only a single Skype icon. You should be able to repeat the above process for any self-updating application you didn't get from the Mac App Store.


The above procedure could easily corrupt your LaunchPad database. Use at your own risk.

Two Skype icon after last update

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