June 3, 2025

Uninstall Skype on Mac

Maksym Sushchuk
Written by
Experienced tech writer with 15 years of translating complex Mac concepts into clear, user-friendly content.

Maksym Sushchuk

Alex Holovchenko
Approved by
The content has been reviewed and approved by our team member, an Apple Certified Support Professional, who provides technical support to Nektony’s users.

Alex Holovchenko

Share

Microsoft officially shut down Skype on May 5, 2025. Farewell to one of the tech icons of the early 2000s.

Whichever app you prefer instead, there’s no point in keeping Skype on your Mac anymore.

Skype retiring window

Dragging to the Trash removes the app itself but not the leftovers. Caches, settings, and background files often stay behind and quietly take up space.

So I looked into how to remove Skype completely from my macOS and leave no trace behind.

Follow this step-by-step guide to do the same.

How to manually remove Skype from your Mac for good

This guide applies to Skype version 8.128 and macOS Sequoia 15.4.

The list of files for removal can differ for earlier versions of macOS or Skype.

Also, you might not find some of the files listed here. Feel free to ignore it: that means your Skype setup did not generate them.

The idea is simple: you’ll visit a few folders and delete files Skype left behind. I’ll explain what each folder or file does – and your job is just to move them to the Trash.

1. Delete Skype

If you haven’t deleted the Skype app yet, you can do that first by dragging it from the Applications folder to the Trash.

2. Remove Skype plugins

If there’s one category of files you don’t want to leave behind for sure, it’s Skype plugins. These little guys can throw unexpected errors when you click someone’s name or phone number in your Contacts app, even after Skype is gone.

Head over to:
~/Library/Address Book Plug-ins/

Copy

In this folder, find and remove the following files:

  • SkypeABCaller.bundle
  • SkypeABChatter.bundle
  • SkypeABDialer.bundle
  • SkypeABSMS.bundle

If you don’t know how to go to the Address Book Plug-ins folder, here’s a small guide.

  1. First, you need to get to the ~ folder. The “~” symbol means your personal user folder. To open it in Finder:

    • Click your name under Favorites in the sidebar (you can add it in Finder Settings → Sidebar tab if it’s not there)
    • Or press Command + Shift + G to launch the Go to Folder dialog, then type ~ and hit Enter. Go to Folder search field
  2. Once you’re in the ~ folder, locate the Library folder. This folder is hidden in Finder by default, so you might want to use the Command + Shift + . (dot) to reveal hidden files first.
  3. Finally, when you get to
    ~/Library/

    Copy

    , open the Address Book Plug-ins folder. This one is not hidden and must be easy to find.

3. Clear Skype preferences

Skype preferences files store your personal Skype settings, like window position and the last used camera.

Go to this folder:
~/Library/Preferences

Copy

Look for these files and delete them:

  • com.skype.skype.plist
  • com.skype.skype.Helper.plist
Also, check the
 ~/Library/Preferences/ByHost/

Copy

folder for files starting with:

com.skype.skype.ShipIt…

Remove them all.

It’s OK if you can’t find some of the files mentioned in this guide.” That means Skype had no need to generate them yet.

4. Remove HTTP cache

HTTP cache holds cached Skype data related to internet activity, like cookies.

Next, open:
~/Library/HTTPStorages/

Copy

Here, find and delete this folder: com.skype.skype

5. Delete application data

This one stores your chat history, call logs, and media files, so clearing it can free up a noticeable amount of space.

Now go to:
~/Library/Application Support/Microsoft/

Copy

Here, you need to get rid of the folder: Skype for Desktop

6. Clear recently opened file info

The file obviously tells macOS which documents Skype opened recently.

Head to:

~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/

Copy

Look for the file com.skype.skype.sfl3 and delete it.

7. Clear cache files

First, let’s remove cache files used for speeding things up and handling updates.

Open:
~/Library/Caches/

Copy

Look for and remove these folders:

  • com.skype.skype.ShipIt
  • com.skype.skype

They’re safe to delete.

Next, you’ll want to remove the file containing details on your last use of Skype.

~/Library/Saved Application State/

Copy

Here, you might find the following file: com.skype.skype.savedState. No need to keep it if you’re uninstalling Skype.

8. Delete logs.

Every app generates logs containing entries about their actions. Skype is no exception. Its log folders contain logs created by Skype’s background processes.

Find this folder:
~/Library/Logs/

Copy

And delete:

  • Skype
  • Skype Helper (Renderer)

9. Clean up temporary files.

These files store temporary data. They usually clear out on restart, but if you rarely shut down your Mac, it’s worth doing manually.

Last stop! Go to:
/private/var/folders/

Copy

The private folder is not in your ~ folder.

It’s in the root of your disk (in most cases, it’s called Macintosh HD).

Private folder in Finder

Inside, the folder names are pretty cryptic, so the easiest way is to search for “skype” inside this folder.

Skype leftover files in Private folder

When you find these, delete them:

And delete:

  • com.skype.skype
  • com.skype.skype.Helper-(GPU)
  • Skype Helper (Renderer)

That’s it! You’ve now removed all traces of Skype on your Mac.

How to remove Skype using Terminal

The steps above walk you through manually deleting Skype-related files. But if you’re comfortable using Terminal, you can remove them much faster with just a few commands.

Don’t worry — I’ve got you covered. And no, you don’t have to memorize any fancy code. In fact, there’s just one command you’ll be using:

rm -rf

Copy

  • rm means “remove”
  • -rf tells your Mac to delete folders and their contents without asking for confirmation
Terminal window showing a command to remove Skype

Below is the full list of commands. Each one removes a different leftover from Skype. Copy, paste to Terminal and hit Enter for each of one of them to remove all Skype-related data.

  • Skype preferences

    rm -rf ~/Library/Preferences/com.skype.skype.plist

    Copy

    rm -rf ~/Library/Preferences/com.skype.skype.Helper.plist

    Copy

    rm ~/Library/Preferences/ByHost/com.skype.skype.ShipIt.*.plist

    Copy

  • User data

    rm -rf ~/Library/HTTPStorages/com.skype.skype

    Copy

    rm -rf ~/Library/Application\ Support/Microsoft/Skype\ for\ Desktop

    Copy

    rm -rf ~/Library/Application\ Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.skype.skype.sfl3

    Copy

  • Cache

    rm -rf ~/Library/Caches/com.skype.skype

    Copy

    rm -rf ~/Library/Caches/com.skype.skype.ShipIt

    Copy

  • Logs

    rm -rf ~/Library/Logs/Skype

    Copy

    rm -rf ~/Library/Logs/Skype\ Helper\ \(Renderer\)

    Copy

  • Saved application state

    rm -rf ~/Library/Saved\ Application\ State/com.skype.skype.savedState

    Copy

  • Contacts integration plugins

    rm -rf ~/Library/Address\ Book\ Plug-Ins/SkypeABCaller.bundle

    Copy

    rm -rf ~/Library/Address\ Book\ Plug-Ins/SkypeABChatter.bundle

    Copy

    rm -rf ~/Library/Address\ Book\ Plug-Ins/SkypeABDialer.bundle

    Copy

    rm -rf ~/Library/Address\ Book\ Plug-Ins/SkypeABSMS.bundle

    Copy

  • Temporary system files

    rm -rf /private/var/folders/*/*/*/com.skype.skype

    Copy

    rm -rf /private/var/folders/*/*/*/com.skype.skype.Helper-*

    Copy

    rm -rf /private/var/folders/*/*/*/”Skype Helper (Renderer)”

    Copy

How to uninstall Skype for Business

Unlike the regular version of Skype, Skype for Business is still active, so there’s no rush to remove it unless you have a reason.

Terminal window showing a command to remove Skype

If you do want to uninstall it, the process is similar but involves a different set of files. You can either delete these manually in Finder or use Terminal again.

Here’s how to do it in Terminal:

  1. Use this command to remove the app from Applications (if you haven’t already):
    sudo rm -rf “/Applications/Skype for Business.app”

    Copy

  2. Delete the login item to stop Skype for Business from auto-starting:
    rm -f “#-LoginItem:/Applications/Skype for Business.app”

    Copy

  3. Remove system-level configuration files:
    rm -f /private/var/db/receipts/com.microsoft.SkypeForBusiness.bom

    Copy

    rm -f /private/var/db/receipts/com.microsoft.SkypeForBusiness.plist

    Copy

  4. Clean up the leftovers in the Application Scripts folder:
    rm -rf ~/Library/Application\ Scripts/com.microsoft.SkypeForBusiness

    Copy

  5. Remove the Container folder created by Skype for Business:
    rm -rf ~/Library/Containers/com.microsoft.SkypeForBusiness

    Copy

  6. Finish off by removing private temporary app data:
    rm -rf /private/var/folders/*/*/*/com.microsoft.SkypeForBusiness

    Copy

The two-click way: use App Cleaner & Uninstaller

If you want an even easier method, consider using an app like App Cleaner & Uninstaller. It automatically finds and deletes all leftover files associated with apps like Skype.

Here’s how to use it:

1. Open the app.

2. In the Applications tab, select Skype.

3. Click the Uninstall button and confirm.
Uninstalling Skype with App Cleaner & Uninstaller

If you’ve already trashed Skype, go to the Remaining Files tab, find Skype-related leftovers, and remove them with one click.

Skype remaining files

This app knows exactly which files Skype creates and safely removes only those. It’s quick, safe, and hassle-free. And you can apply this approach to Skype for Business as well.

That’s a wrap

I didn’t delete Skype until now, but moved on from it years ago — faster, sleeker alternatives came along. But I still remember our old family group chat and my first calls across the ocean with friends I hadn’t seen in years. Those memories were made possible thanks to Skype, and for that, it’ll always have a nostalgic spot in our hearts.

Just… not on our Macs anymore. That spot’s been vacated. 😄

Frequently asked questions

Why should I bother uninstalling Skype if it’s no longer supported?

Even though Microsoft has officially retired Skype, the app may still try to connect to various internet addresses in the background. This behavior has been observed through tools like Little Snitch, which show Skype making network requests despite being unused. At best, it wastes bandwidth. At worst, it’s a needless drain on your system’s resources and your peace of mind.

What are the best alternatives to Skype?

If you want to keep your chats and contacts, Microsoft recommends switching to Microsoft Teams. It’s a pretty smooth move — just install the app and sign in with your Skype email. The interface feels a bit different, but it’s easy to get the hang of.

Alternatively, you can export Skype data (here’s Microsoft’s guide) and switch to something else – like FaceTime, WhatsApp, or even the privacy-focused Signal messenger (my choice!).

Why has everyone stopped using Skype?

Because Microsoft officially retired Skype on May 5, 2025. They’ve been pouring their energy into Teams, and let’s be honest — Skype was built on tech that was long showing its age. It had a good run, though!

How do I disconnect from Skype completely?

If you’re looking to go all-in and delete your Skype account, you can do that through your Microsoft account settings — here’s the official step-by-step guide.

Just keep in mind: closing your Skype account means closing your entire Microsoft account, too. That includes Outlook, OneDrive, and other services.

If you’re not ready for that level of commitment, you can just leave the account be. No one will be able to reach you through your old Skype name anyway. Sometimes doing nothing is the cleanest brake.

Scroll to Top