gpt4 book ai didi

windows-vista - 从另一个应用程序关闭 Vista 小工具

转载 作者:行者123 更新时间:2023-12-04 07:06:27 28 4
gpt4 key购买 nike

我创建了一个示例小工具(当然使用 google :D)。它显示“Hello World!”。
我已经创建了一个 .gadget 文件来安装这个小工具。
我编写了一个应用程序,它执行 ShellExecute 来安装这个小工具。
我可以看到我的 hello world 小工具。
很公平。并且吸取了很好的教训。

现在我想编写另一个应用程序来关闭这个小工具并将其从侧边栏中删除。
有没有程序化方式去做这个?

最佳答案

我找到了一种方法来做到这一点。它是模拟用户关闭小工具的操作。
以下是脚本。

function StopGadget(GadgetName)
{
var WshShell = new ActiveXObject(\"WScript.Shell\");
WshShell.AppActivate(GadgetName);
WshShell.SendKeys(\"+{F10}C\");
WshShell = null;
}

关于windows-vista - 从另一个应用程序关闭 Vista 小工具,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1058443/

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