gpt4 book ai didi

visual-studio - 如何卸载 "Microsoft Advertising SDK"Visual Studio扩展?

转载 作者:行者123 更新时间:2023-12-03 04:14:56 25 4
gpt4 key购买 nike

Visual Studio(对我来说是 2012)中列出的扩展之一是“Microsoft Advertising SDK for Windows 8.1”。我喜欢卸载不需要的扩展,但这个扩展不允许我这样做。如果我将鼠标悬停在(启用!)按钮上,它会在工具提示中显示:

This product cannot be uninstalled via extensions and updates

看起来像这样:

extensions

在第二次检查时,我在右下角看到了类似的(更有帮助的)消息:

You need to use the Programs and Features pane in the Windows Control Panel to remove this extension.

很简单,不是吗?但它不在那里!

uninstalls

或者:

uninstalls search

除了屏幕上的说明之外,我还进行了搜索。唯一有用的来源是 this MSDN page这基本上是同一件事。 链接现已损坏

评论者提到 the extension web page (请参阅“评论”和“问答”选项卡)也有一些类似的提示。我也在那里交叉发布了这个问题。 链接现已损坏,但如果您搜索,其他人仍在 MSDN 论坛上提示

无论如何:有没有简单的方法来卸载此扩展程序?

最佳答案

提升 Powershell 提示符运行以下命令:

gwmi Win32_Product -Filter "Name LIKE 'Microsoft Advertising%'"

它应该显示罪魁祸首:

IdentifyingNumber : {6AB13C21-C3EC-46E1-8009-6FD5EBEE515B}
Name : Microsoft Advertising SDK for Windows 8.1 - ENU
Vendor : Microsoft Corporation
Version : 8.1.30809.0
Caption : Microsoft Advertising SDK for Windows 8.1 - ENU

IdentifyingNumber : {6AC81125-8485-463D-9352-3F35A2508C11}
Name : Microsoft Advertising SDK for Windows Phone 8.1 XAML - ENU
Vendor : Microsoft Corporation
Version : 8.1.40427.0
Caption : Microsoft Advertising SDK for Windows Phone 8.1 XAML - ENU

IdentifyingNumber : {5C87A4DB-31C7-465E-9356-71B485B69EC8}
Name : Microsoft Advertising SDK for Windows Phone - ENU
Vendor : Microsoft Corporation
Version : 6.2.960.0
Caption : Microsoft Advertising SDK for Windows Phone - ENU

IdentifyingNumber : {EBD9DB6D-180B-4C59-9622-B75CC4B32C94}
Name : Microsoft Advertising Service Extension for Visual Studio
Vendor : Microsoft Corporation
Version : 12.0.40402.0
Caption : Microsoft Advertising Service Extension for Visual Studio

然后要实际卸载,请添加 | foreach { $_.Uninstall() } 到命令如下:

gwmi Win32_Product -Filter "Name LIKE 'Microsoft Advertising%'" | foreach { $_.Uninstall() }

应该为每个显示:

__GENUS          : 2
__CLASS : __PARAMETERS
__SUPERCLASS :
__DYNASTY : __PARAMETERS
__RELPATH :
__PROPERTY_COUNT : 1
__DERIVATION : {}
__SERVER :
__NAMESPACE :
__PATH :
ReturnValue : 0
PSComputerName :

要寻找的重要内容是ReturnValue : 0,这意味着成功。如果您收到 ReturnValue : 1603 ,这可能意味着您的 Powershell 提示符未提升(以管理员身份运行)。 (记录的 ReturnValues 完整列表 here )

关于visual-studio - 如何卸载 "Microsoft Advertising SDK"Visual Studio扩展?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24134693/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com