5

如何将自定义文本添加到关机屏幕,例如 Windows 在关机前安装更新时显示的那些消息?例如,您有一个在关机时执行的备份脚本,并且您想像 Windows 在安装更新时一样通知备份的进度。是否有任何命令行工具,或者一些代码库,甚至是 Windows API 中的东西?

请注意,这不是关于如何关闭计算机,也不是关于在关闭屏幕中显示消息的任何方式,例如控制台应用程序或消息框。这也不是关于自定义现有消息,也不是关于在关机屏幕之前显示的任何关机对话框,它允许用户取消关机或继续而不等待程序终止。

这是关于了解 Windows 如何以它们在关机时的显示方式实现这些消息的显示,以及如何添加要显示的新消息,最好是带有进度信息。为了清楚起见,下面是截图。

关机画面

4

2 回答 2

0

wmsgapi.dll 中有一个函数 WmsgPostNotifyMessage 正在显示此消息。虽然没有记录,但使用起来应该不成问题。

于 2013-11-09T15:31:21.063 回答
-1

这是一个可以通过消息关闭计算机的 C++ 代码。

#include <windows.h>

#pragma comment( lib, "advapi32.lib" )

BOOL MySystemShutdown( LPTSTR lpMsg )
{
   HANDLE hToken;              // handle to process token 
   TOKEN_PRIVILEGES tkp;       // pointer to token structure 

   BOOL fResult;               // system shutdown flag 

   // Get the current process token handle so we can get shutdown 
   // privilege. 

   if (!OpenProcessToken(GetCurrentProcess(), 
        TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken)) 
          return FALSE; 

   // Get the LUID for shutdown privilege. 

   LookupPrivilegeValue(NULL, SE_SHUTDOWN_NAME, 
        &tkp.Privileges[0].Luid); 

   tkp.PrivilegeCount = 1;  // one privilege to set    
   tkp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED; 

   // Get shutdown privilege for this process. 

   AdjustTokenPrivileges(hToken, FALSE, &tkp, 0, 
  (PTOKEN_PRIVILEGES) NULL, 0); 

   // Cannot test the return value of AdjustTokenPrivileges. 

   if (GetLastError() != ERROR_SUCCESS) 
      return FALSE; 

   // Display the shutdown dialog box and start the countdown. 

   fResult = InitiateSystemShutdown( 
      NULL,    // shut down local computer 
      lpMsg,   // message for user
      30,      // time-out period, in seconds 
      FALSE,   // ask user to close apps 
      TRUE);   // reboot after shutdown 

   if (!fResult) 
      return FALSE; 

   // Disable shutdown privilege. 

   tkp.Privileges[0].Attributes = 0; 
   AdjustTokenPrivileges(hToken, FALSE, &tkp, 0, 
    (PTOKEN_PRIVILEGES) NULL, 0); 

   return TRUE; 
}
于 2012-12-22T02:45:14.500 回答