卸载Visual F#Visual

2023-09-03 00:21:57 作者:曖__昧〆圥玍

我使用Visual Studio 2013,它有一个pretty的功能通知并安装所有扩展更新。

所以,这是很不错的,但我收到有时安装对我从来没有使用的功能更新的要求。

作为例子,提出我安装更新的的Visual F#3.1

有没有办法彻底删除此F#?我试图从扩展管理器卸载,发送我的。添加&放大器;删除程序,但含有F#的任何程序

如何进行呢?

解决方案

有一个真棒包,它会做包的找你所谓的 TotalUninstaller 通过codePLEX用户 konste 。

下载包并解压到如C:\ TotalUninstaller

这是一个命令行程序,你需要administator权限的CMD.EXE(点击开始 - >输入cmd - >右键点击进入 - >选择开始作为管理员)。通过   

C:功放;&安培; CD \&功放;&安培; CD TotalUninstaller

为了列出所有已安装的软件包,你需要输入

  

TotalUninstaller.exe / ListAll> LIST.TXT

这可以是一个压倒性的名单,所以我用一个管道使内容可以用编辑器(只需打开LIST.TXT)进行查看。

但其实这是不是真的需要,因为有一个叫做TotalUninstaller.exe.config文件,其中设有一个部分,在那里可以定义通过关​​键字过滤安装的软件包。它配备了一个很方便的默认设置。

Visual Studio 2010爆F 二进制兼容性问题

为了查看选择的过滤器应用后,输入

  

TotalUninstaller.exe /过滤器

这些都是包,该方案目前正在将消除。如果你很高兴与选择,输入以下,将不会有进一步的检查或疑问

  

TotalUninstaller.exe /卸载

和观赏包消失。标识关闭前的最后一次通话的所有其他应用程序。

I use Visual Studio 2013, and it have a pretty feature to notify and install all extension updates.

So, this is very good, but I receive sometimes the request to install the updates for the features I never use.

By example, it proposes me to install the update for the Visual F# 3.1

Is there a way to completely remove this F#? I tried to uninstall from the extensions manager, it sends me to the "Add & Remove Programs", but there is any program containing "F#".

How to proceed?

解决方案

There is an awesome package which will do the searching of packages for you called TotalUninstaller by Codeplex user konste.

Download the package and unpack it to e.g. C:\TotalUninstaller.

It is a commandline program, you need a cmd.exe with administator privileges (click start -> enter "cmd" -> right click on the entry -> select "start as administrator). Navigate to the directory via

c: && cd \ && cd TotalUninstaller

In order to list all installed packages you would enter

TotalUninstaller.exe /ListAll > list.txt

This can be an overwhelming list, so i used a pipe so the content can be viewed with an editor (just open list.txt).

But this is actually not really needed, as there is a file called "TotalUninstaller.exe.config" which features a section where one can define keywords to filter the installed packages by. It comes with a quite handy default set.

In order to view the selection after the filter was applied, enter

TotalUninstaller.exe /Filter

Those are the packages that the program currently would remove. If you are happy with the selection, enter the following, THERE WILL BE NO FURTHER CHECK OR QUESTION

TotalUninstaller.exe /Uninstall

and watch the packages disappear. Id close all other applications prior to the last call.