Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I uninstall Azure SDK for .NET 2.5?

I downloaded pieces of Azure SDK for .NET 2.5 from here, - "authoring tools", "Azure tools" and "libs for .net" packages and installed them one after another. Installation went successfully and Visual Studio 2012 even offered to migrate my .ccproj project afterwards.

The problem is they are not in "Add/Remove" programs list (SDK 1.8 components were in that list) so I have no idea how to start uninstalling the SDK.

How do I uninstall this stuff?

like image 241
sharptooth Avatar asked Jan 13 '15 15:01

sharptooth


4 Answers

I had the same problem in Visual Studio 2015 Community. There are no Azure items in Add/Remove Programs and no uninstall option in Tools/Extensions and Updates.

The solution is to go to C:\Windows\Installer and selecting Uninstall from the context menu on every .msi file that has "Azure" in the description. Works perfectly and every piece of azure trash is not in Visual Studio anymore.

Note: .msi files have hash-like names in the Installer directory. To easily identify what's which .msi file, simply add the Subject column in Windows Explorer. It will show the description.

like image 151
Ondřej Avatar answered Nov 15 '22 23:11

Ondřej


I also have same problem. I just installed Visual Studio 2015 Community(Update 2) and found a lot of Azure things there. I tried removing them in the extensions window but even if I uninstalled them, they're still listed in the About window. It's like it just simply hidden not uninstalled. Not to mention, Azure SDK also keeps asking for updates, and not exists in the extension list.

After some searching I found this tool. You can use this tool to remove the all the Azures. I've tried and it works. Now the Visual Studio starts faster too :D

https://github.com/tsasioglu/Total-Uninstaller

like image 41
user77177928 Avatar answered Nov 15 '22 23:11

user77177928


You cannot find them in the "Add/Remove Programs" list because early SDK tools were called Windows Azure Something and were at the bottom of the list and newer SDK tools are called Microsoft Azure Something and are in the middle of the list.

Just order the list by "installed on" and you'll find them easily and can remove them.

like image 12
sharptooth Avatar answered Nov 15 '22 23:11

sharptooth


To complete Ondřej's answer (I can't comment yet): since windows explorer doesn't show the description or allows to search for it, I opened a command-line in said folder and ran findstr /I /M azure *.msi to get the list of files containing "Azure". Then I checked each of the files in the resulting list manually to make sure I was related to Azure and I was done.

like image 6
La bétonneuse Avatar answered Nov 15 '22 21:11

La bétonneuse