How do you uninstall Skype?

3

The old way of uninstalling a program doesn't apply anymore. That is, Skype is not listed under Control Panel > Uninstall a Program.

enter image description here

I did a little googling and I found what some people said was a solution for them.

run powershell as administrator
Get-AppxPackage -allusers Microsoft.SkypeApp | Remove-AppxPackage
alternatively ...
get-appxpackage *skype* | remove-appxpackage

That logged me out of Skype but Skype is still there, launching at startup.

enter image description here

I do not want Skype. I want it off this computer like I would want a ceti eel out of my ear. That Microsoft obfuscates and changes the removal process to this degree concerns me.

user875234

Posted 2018-10-06T17:11:17.553

Reputation: 192

Yes, I've already seen and considered that. They are instructions for uninstalling and reinstalling skype. I only want to uninstall skype. – user875234 – 2018-10-06T17:19:05.797

If in the Start menu you can see skype, right-click it and choose Uninstall. You may also try to delete the folders %appdata%\Skype and C:\ProgramData\Skype. – harrymc – 2018-10-06T17:50:10.910

It appears to not be installed. https://i.imgur.com/QUmbzFw.png and %appdata%\Skype doesn't exist. Hold on, let me restart my computer for the fifth time. I believe its "uninstalled" from an attempt at using settings > apps and features during this session. That, however does not uninstall skype as after a reinstall it's right back there letting you uninstall it again and it still launches at startup. Now, maybe the window that launches at start and says "Skype" all over it isn't Skype Skype. idk. Let me restart....

– user875234 – 2018-10-06T17:59:00.370

Yeah, that doesn't work. First off, that window that launches at startup after you uninstall skype IS skype. It says skype right on it and it's identified as skype in the task manager. When you go to settings > apps and features and "uninstall" skype it closes that window. ...however, when you restart your computer skype is back. – user875234 – 2018-10-06T18:03:25.250

Since Microsoft resurrects Skype after the fake uninstall I believe what I will do is dual boot ubuntu and from there delete the files under program files/windows apps/*skype* since I am not versed enough in windows to get past all the blocks it puts in your way to deleting any files in that directory. e.g. make myself owner, give myself full control, delete all other roles with any access to that file, it still wont let me delete it. But I believe if I access it from ubuntu I will be able to do whatever I want. I'm open to other ways of doing this. – user875234 – 2018-10-06T18:52:22.507

1I just experimented a bit and I think I know what probably happens in your case: Basically what I did: Installed Skype from the Microsoft Store. Pinned it to the start menu. Use Drag and Drop to create a lnk any folder, in this case the autostart folder which would make it start on every login. Uninstalled Skype and checked it was gone. Now I started the .lnk by hand and Skype actually launched even though it was uninstalled. Looking at the .lnk it doesn't actually link to some .exe but the UWP Apps Name. Apparently if a lnk starts and App that is not installed it will reinstall itself. – User025 – 2018-10-07T12:41:47.047

Incredible! That's some grade A detective work, sir. I can't express my gratitude in any way that matches up with how big of a deal this was for me. It seems like you've discovered something that people should be writing articles about. Maybe I'm just out of the loop. Either way, THANK YOU! ...so to be clear the fix was to "uninstall" it and then delete C:\Users\user875234\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\Skype.lnk – user875234 – 2018-10-07T13:51:24.110

I edited my answer to reflect this information so that future visitors can easily find an possible solution to there same problem. – User025 – 2018-10-08T15:08:03.080

Possible duplicate of How to stop Skype from starting automatically when booting Windows 10?

– Run5k – 2019-05-23T20:38:39.193

Answers

2

The reason of Skype not appearing in the the list of installed programs (the one found in the control panel) is the fact that it is a UWP (Universal Windows Platform) app. These apps can be uninstall in the modern settings app by navigating into Apps -> Apps & Features. There you can select the unwanted app and press the uninstall button.
Another way is to search the app in the start menu and selecting Uninstall in the right click menu.
Normally there is no need to use Powershell (only stuff like the Xbox app needs to be removed that way)

Note: If an UWP App (an App from the Windows Store) gets uninstalled it will be instantly removed. However if you have .lnk of that UWP App on your Desktop and launch it the app will simply be reinstalled and starts itself. This means if you have the modern Skype in your "Autostart" folder Skype will reinstall itself when you login and then start itself. An .lnk to an UWP app looks like this:

Notice how the target is simply the apps name.

User025

Posted 2018-10-06T17:11:17.553

Reputation: 378

You're right, it was there under Settings > Apps & Features. BUT, if I uninstall from there and restart my computer skype still launches. So I go back to Settings > Apps & Features and uninstall again and restart. It's still there and it still launches at startup. – user875234 – 2018-10-06T17:36:40.957

Can you check if Skype exists the Autostart tab in taskmanager? Try disabling it there if it exists. Also try checking your autostart folder (to open that press Win +R type in shell:startup and press enter) – User025 – 2018-10-06T17:45:32.730

Of course it's not in the Startup tab in task manager. Come on man, you have way too much faith in Microsoft. I assume it runs from some pork barrel service whose name cannot be guessed. – user875234 – 2018-10-06T17:52:04.540

1

There is a handy sysinterals program that shows all programs that somehow start themself automatically. It can be downloaded here: https://docs.microsoft.com/en-us/sysinternals/downloads/autoruns

– User025 – 2018-10-06T18:04:52.367

Thanks. and I do appreciate you taking the time to answer and try to help me. I'm not installing anything else from Microsoft though until I get Skype off. I know they have different divisions and some are more insidious than others but I'm not installing anything from Microsoft right now. – user875234 – 2018-10-06T18:07:11.947

Well its a .zip file that you can simply extract and run the .exe without needing to install it. (no .msi or anything setup like) – User025 – 2018-10-06T18:08:11.653

I might give it a go if nothing pans out. I've already spent almost two hours trying to remove skype. I was supposed to be working. – user875234 – 2018-10-06T18:08:59.293

3

The command line (Command Prompt) can be used to uninstall Skype:

  1. Open a command prompt.

  2. Type wmic and press Enter.  You will see a prompt that looks like this:

    wmic:root\cli>

  3. At the new prompt, execute the following command:

    product get name
    

    (This will generate a list of installed applications.)

  4. At the prompt, execute the following command:

    product where name="application name" call uninstall

    ... where application name is the name of the program you wish to uninstall.  (Use the exact name provided by the previously generated list.)  For example, if I wanted to uninstall Adobe Reader 9, my command would look like this:

    product where name="Adobe Reader 9" call uninstall`
    
  5. When prompted, input y to confirm that you wish to uninstall the application and press Enter.

Adlan Kadri

Posted 2018-10-06T17:11:17.553

Reputation: 31

2when i do product get name it prints out a list of installed programs. I can't find "skype", "lync", or "office" anywhere in that list. ¯_(ツ)_/¯ – user875234 – 2018-10-06T17:38:28.870