Windows 关闭对话框

发布于 2024-07-14 15:32:34 字数 179 浏览 5 评论 0原文

有没有一种方法可以使用任何语言(首选:C/C++、VB、Haskell、批处理)调出 Windows XP 关闭对话框(带有三个按钮的对话框 - 按下 Shift 时挂起、关闭、重新启动和休眠)?

我想我可以在我的 C++ 程序中加载 msgina.dll,但我不知道下一步该做什么 - dll 中的哪个函数用于显示对话框?

Is there a way to bring up the Windows XP shutdown dialog (the one with the three buttons – Suspend, Shutdown, Restart and Hibernate when Shift is pressed) using any language (preferred: C/C++, VB, Haskell, batches)?

I think I can load the msgina.dll in my C++ program, but I dunno what to do next – what function in the dll is used to show the dialog?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

半透明的墙 2024-07-21 15:32:34

假设您的语言有办法在 Windows 上执行基本文件 I/O 并调用快捷方式,请尝试

  • 在系统上的某个位置创建一个新的 txt 文件,打开它并输入以下一行:
    (new ActiveXObject("Shell.Application")).ShutdownWindows();
  • 保存并关闭文件。 将扩展名更改为 *.js
  • 您可以创建该文件的快捷方式,以便轻松关闭系统。

Assuming that your language has a way to do basic file I/O and invoke shortcuts on Windows, try this tip from here:

  • Create a new txt file somewhere on your system, open it and put in this one line:
    (new ActiveXObject("Shell.Application")).ShutdownWindows();
  • Save and close the file. Change the extension to *.js.
  • You can make a shortcut to that file to make it easy to shut down your system.
你丑哭了我 2024-07-21 15:32:34

我发现 PowerShell 比其他 Windows 脚本选项更优雅。

(New-Object -Com Shell.Application).ShutdownWindows()

I find PowerShell to be more elegant than other Windows scripting options.


(New-Object -Com Shell.Application).ShutdownWindows()

未央 2024-07-21 15:32:34

我发现(14年后)一个简单的解决方案是向“progman”窗口发送WM_CLOSE消息,这将触发标准关闭对话框(在Win 10和Win 11中测试):

SendMessageW(FindWindowW(L"progman", NULL), WM_CLOSE, 0, 0);

I found out (14 years later) that a simple solution is to send a WM_CLOSE message to the "progman" window, this will trigger the standard shutdown dialog (tested in Win 10 and Win 11):

SendMessageW(FindWindowW(L"progman", NULL), WM_CLOSE, 0, 0);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文