小工具:需要通过 C# 代码以编程方式卸载小工具
请让我知道如何以编程方式卸载小工具。现在我正在使用这个命令
sidebar.exe /uninstall gadget_name
但它只是弹出小工具控制窗口,不卸载指定的小工具。 我的命令有什么问题吗? 请帮忙。 提前致谢。
Please let me know how to uninstall a gadget programmatically. Rite now i am using this command
sidebar.exe /uninstall gadget_name
but it just pop the gadget control window, do not uninstall the specified gadget.
Am I doing anything wrong with command.
Plz help.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设该小工具当前未运行(无论如何都必须关闭它才能卸载),您只需删除该小工具的文件夹即可,该文件夹通常位于
appdata%\local\Microsoft\Windows Sidebar\Gadgets\
中。该文件夹的名称将为
.gadget
。这几乎就是 sidebar.exe 卸载小工具时所做的事情。Assuming the gadget isn't currently running (it has to be closed for uninstall anyway), you can just delete the gadget's folder, usually found in
appdata%\local\Microsoft\Windows Sidebar\Gadgets\
.The name of the folder will be
<your-gadget-name>.gadget
. This is pretty much what sidebar.exe does when it uninstalls a gadget anyway.