How do you remove/uninstall Add-Ins for Visual Studio if they are broken?
I had EntitySpaces Add-in for Visual Studio (all versions) installed. Upon uninstalling it, when you start up any version of Visual Studio, you get the message "could not rename add-in file". How do you get rid of this or stop Visual Studio from trying to load the Add-In?
It appears this can be a common problem when applications that install Add-Ins or just Add-Ins on their own, don't uninstall properly or just plain break.
visual-studio add-in
add a comment |
I had EntitySpaces Add-in for Visual Studio (all versions) installed. Upon uninstalling it, when you start up any version of Visual Studio, you get the message "could not rename add-in file". How do you get rid of this or stop Visual Studio from trying to load the Add-In?
It appears this can be a common problem when applications that install Add-Ins or just Add-Ins on their own, don't uninstall properly or just plain break.
visual-studio add-in
Have you tried to rundevenv.exe /setup
?
– bahrep
Apr 8 '13 at 13:31
@bahrep expanded answer to include a different devenv / command I tried, what doesdevenv.exe /setup
do?
– Coops
Apr 8 '13 at 13:37
add a comment |
I had EntitySpaces Add-in for Visual Studio (all versions) installed. Upon uninstalling it, when you start up any version of Visual Studio, you get the message "could not rename add-in file". How do you get rid of this or stop Visual Studio from trying to load the Add-In?
It appears this can be a common problem when applications that install Add-Ins or just Add-Ins on their own, don't uninstall properly or just plain break.
visual-studio add-in
I had EntitySpaces Add-in for Visual Studio (all versions) installed. Upon uninstalling it, when you start up any version of Visual Studio, you get the message "could not rename add-in file". How do you get rid of this or stop Visual Studio from trying to load the Add-In?
It appears this can be a common problem when applications that install Add-Ins or just Add-Ins on their own, don't uninstall properly or just plain break.
visual-studio add-in
visual-studio add-in
edited Apr 8 '13 at 13:28
Joel Coehoorn
309k95492725
309k95492725
asked Apr 8 '13 at 13:26
CoopsCoops
3,07342845
3,07342845
Have you tried to rundevenv.exe /setup
?
– bahrep
Apr 8 '13 at 13:31
@bahrep expanded answer to include a different devenv / command I tried, what doesdevenv.exe /setup
do?
– Coops
Apr 8 '13 at 13:37
add a comment |
Have you tried to rundevenv.exe /setup
?
– bahrep
Apr 8 '13 at 13:31
@bahrep expanded answer to include a different devenv / command I tried, what doesdevenv.exe /setup
do?
– Coops
Apr 8 '13 at 13:37
Have you tried to run
devenv.exe /setup
?– bahrep
Apr 8 '13 at 13:31
Have you tried to run
devenv.exe /setup
?– bahrep
Apr 8 '13 at 13:31
@bahrep expanded answer to include a different devenv / command I tried, what does
devenv.exe /setup
do?– Coops
Apr 8 '13 at 13:37
@bahrep expanded answer to include a different devenv / command I tried, what does
devenv.exe /setup
do?– Coops
Apr 8 '13 at 13:37
add a comment |
2 Answers
2
active
oldest
votes
There are a few helpful articles which may be useful for your particular Add-In:
http://www.mztools.com/articles/2006/mz2006018.aspx
First of all I tried this (which may work for you) How to: Deactivate and Remove an Add-In.
Note if you don't know the Namespace or ClassName of the addin, you can find it in the .addin file under FullClassName:
To remove an add-in from the integrated development environment (IDE)
- Delete the .addin XML registration file for the add-in that you want
to remove. The default location is ..Usersusername DocumentsVisual
Studio 2010Addins
- At a Visual Studio command prompt, type devenv
/resetaddin Namespace.ClassName, where Namespace is the name of your
add-in project and Classname is its class name, for example, devenv
/resetaddin MyAddin1.Connect
For me this, although not my exact problem, lead to my resolution, which was simply to run Visual Studio as administrator. Doing this for just one version of Visual Studio solved my problem in that the error message no longer appeared (probably because it was then able to successfully rename as per the original error message).
4
That is absolutely ridiculous. Why can VS automate installation of add-ins (just run a.vsix
file), but removing them has to be done manuall‽ Why in the world can you not simply right-click the add in the so-called add-in “manager” and select Uninstall? Ludicrous!
– Synetech
Jul 3 '14 at 18:48
Also, I am trying to remove a third-party add-in, so I don’t know what the namespace/class-name even is. That MSDN article is useless. Way to go Microsoft. ಠ_ಠ
– Synetech
Jul 3 '14 at 18:55
add a comment |
For Visual Studio 2015 you have to:
Click on Tool -> Extensions and Updates.
Be sure that Installed option is selected in left part of the window.
Find your addin, select it and click on Uninstall button.
Restart Visual Studio.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f15880304%2fhow-do-you-remove-uninstall-add-ins-for-visual-studio-if-they-are-broken%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
There are a few helpful articles which may be useful for your particular Add-In:
http://www.mztools.com/articles/2006/mz2006018.aspx
First of all I tried this (which may work for you) How to: Deactivate and Remove an Add-In.
Note if you don't know the Namespace or ClassName of the addin, you can find it in the .addin file under FullClassName:
To remove an add-in from the integrated development environment (IDE)
- Delete the .addin XML registration file for the add-in that you want
to remove. The default location is ..Usersusername DocumentsVisual
Studio 2010Addins
- At a Visual Studio command prompt, type devenv
/resetaddin Namespace.ClassName, where Namespace is the name of your
add-in project and Classname is its class name, for example, devenv
/resetaddin MyAddin1.Connect
For me this, although not my exact problem, lead to my resolution, which was simply to run Visual Studio as administrator. Doing this for just one version of Visual Studio solved my problem in that the error message no longer appeared (probably because it was then able to successfully rename as per the original error message).
4
That is absolutely ridiculous. Why can VS automate installation of add-ins (just run a.vsix
file), but removing them has to be done manuall‽ Why in the world can you not simply right-click the add in the so-called add-in “manager” and select Uninstall? Ludicrous!
– Synetech
Jul 3 '14 at 18:48
Also, I am trying to remove a third-party add-in, so I don’t know what the namespace/class-name even is. That MSDN article is useless. Way to go Microsoft. ಠ_ಠ
– Synetech
Jul 3 '14 at 18:55
add a comment |
There are a few helpful articles which may be useful for your particular Add-In:
http://www.mztools.com/articles/2006/mz2006018.aspx
First of all I tried this (which may work for you) How to: Deactivate and Remove an Add-In.
Note if you don't know the Namespace or ClassName of the addin, you can find it in the .addin file under FullClassName:
To remove an add-in from the integrated development environment (IDE)
- Delete the .addin XML registration file for the add-in that you want
to remove. The default location is ..Usersusername DocumentsVisual
Studio 2010Addins
- At a Visual Studio command prompt, type devenv
/resetaddin Namespace.ClassName, where Namespace is the name of your
add-in project and Classname is its class name, for example, devenv
/resetaddin MyAddin1.Connect
For me this, although not my exact problem, lead to my resolution, which was simply to run Visual Studio as administrator. Doing this for just one version of Visual Studio solved my problem in that the error message no longer appeared (probably because it was then able to successfully rename as per the original error message).
4
That is absolutely ridiculous. Why can VS automate installation of add-ins (just run a.vsix
file), but removing them has to be done manuall‽ Why in the world can you not simply right-click the add in the so-called add-in “manager” and select Uninstall? Ludicrous!
– Synetech
Jul 3 '14 at 18:48
Also, I am trying to remove a third-party add-in, so I don’t know what the namespace/class-name even is. That MSDN article is useless. Way to go Microsoft. ಠ_ಠ
– Synetech
Jul 3 '14 at 18:55
add a comment |
There are a few helpful articles which may be useful for your particular Add-In:
http://www.mztools.com/articles/2006/mz2006018.aspx
First of all I tried this (which may work for you) How to: Deactivate and Remove an Add-In.
Note if you don't know the Namespace or ClassName of the addin, you can find it in the .addin file under FullClassName:
To remove an add-in from the integrated development environment (IDE)
- Delete the .addin XML registration file for the add-in that you want
to remove. The default location is ..Usersusername DocumentsVisual
Studio 2010Addins
- At a Visual Studio command prompt, type devenv
/resetaddin Namespace.ClassName, where Namespace is the name of your
add-in project and Classname is its class name, for example, devenv
/resetaddin MyAddin1.Connect
For me this, although not my exact problem, lead to my resolution, which was simply to run Visual Studio as administrator. Doing this for just one version of Visual Studio solved my problem in that the error message no longer appeared (probably because it was then able to successfully rename as per the original error message).
There are a few helpful articles which may be useful for your particular Add-In:
http://www.mztools.com/articles/2006/mz2006018.aspx
First of all I tried this (which may work for you) How to: Deactivate and Remove an Add-In.
Note if you don't know the Namespace or ClassName of the addin, you can find it in the .addin file under FullClassName:
To remove an add-in from the integrated development environment (IDE)
- Delete the .addin XML registration file for the add-in that you want
to remove. The default location is ..Usersusername DocumentsVisual
Studio 2010Addins
- At a Visual Studio command prompt, type devenv
/resetaddin Namespace.ClassName, where Namespace is the name of your
add-in project and Classname is its class name, for example, devenv
/resetaddin MyAddin1.Connect
For me this, although not my exact problem, lead to my resolution, which was simply to run Visual Studio as administrator. Doing this for just one version of Visual Studio solved my problem in that the error message no longer appeared (probably because it was then able to successfully rename as per the original error message).
edited Sep 24 '14 at 19:04
ell
3,5581734
3,5581734
answered Apr 8 '13 at 13:26
CoopsCoops
3,07342845
3,07342845
4
That is absolutely ridiculous. Why can VS automate installation of add-ins (just run a.vsix
file), but removing them has to be done manuall‽ Why in the world can you not simply right-click the add in the so-called add-in “manager” and select Uninstall? Ludicrous!
– Synetech
Jul 3 '14 at 18:48
Also, I am trying to remove a third-party add-in, so I don’t know what the namespace/class-name even is. That MSDN article is useless. Way to go Microsoft. ಠ_ಠ
– Synetech
Jul 3 '14 at 18:55
add a comment |
4
That is absolutely ridiculous. Why can VS automate installation of add-ins (just run a.vsix
file), but removing them has to be done manuall‽ Why in the world can you not simply right-click the add in the so-called add-in “manager” and select Uninstall? Ludicrous!
– Synetech
Jul 3 '14 at 18:48
Also, I am trying to remove a third-party add-in, so I don’t know what the namespace/class-name even is. That MSDN article is useless. Way to go Microsoft. ಠ_ಠ
– Synetech
Jul 3 '14 at 18:55
4
4
That is absolutely ridiculous. Why can VS automate installation of add-ins (just run a
.vsix
file), but removing them has to be done manuall‽ Why in the world can you not simply right-click the add in the so-called add-in “manager” and select Uninstall? Ludicrous!– Synetech
Jul 3 '14 at 18:48
That is absolutely ridiculous. Why can VS automate installation of add-ins (just run a
.vsix
file), but removing them has to be done manuall‽ Why in the world can you not simply right-click the add in the so-called add-in “manager” and select Uninstall? Ludicrous!– Synetech
Jul 3 '14 at 18:48
Also, I am trying to remove a third-party add-in, so I don’t know what the namespace/class-name even is. That MSDN article is useless. Way to go Microsoft. ಠ_ಠ
– Synetech
Jul 3 '14 at 18:55
Also, I am trying to remove a third-party add-in, so I don’t know what the namespace/class-name even is. That MSDN article is useless. Way to go Microsoft. ಠ_ಠ
– Synetech
Jul 3 '14 at 18:55
add a comment |
For Visual Studio 2015 you have to:
Click on Tool -> Extensions and Updates.
Be sure that Installed option is selected in left part of the window.
Find your addin, select it and click on Uninstall button.
Restart Visual Studio.
add a comment |
For Visual Studio 2015 you have to:
Click on Tool -> Extensions and Updates.
Be sure that Installed option is selected in left part of the window.
Find your addin, select it and click on Uninstall button.
Restart Visual Studio.
add a comment |
For Visual Studio 2015 you have to:
Click on Tool -> Extensions and Updates.
Be sure that Installed option is selected in left part of the window.
Find your addin, select it and click on Uninstall button.
Restart Visual Studio.
For Visual Studio 2015 you have to:
Click on Tool -> Extensions and Updates.
Be sure that Installed option is selected in left part of the window.
Find your addin, select it and click on Uninstall button.
Restart Visual Studio.
answered Nov 23 '18 at 11:18
1_bug1_bug
2,85622633
2,85622633
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f15880304%2fhow-do-you-remove-uninstall-add-ins-for-visual-studio-if-they-are-broken%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Have you tried to run
devenv.exe /setup
?– bahrep
Apr 8 '13 at 13:31
@bahrep expanded answer to include a different devenv / command I tried, what does
devenv.exe /setup
do?– Coops
Apr 8 '13 at 13:37