0

我知道移动推车上大约有 250 台笔记本电脑没有得到充分利用。我正在编写一个程序,该程序编写一个日志文件来捕获开机和关机事件。但是,当我尝试捕获立即关闭事件(用户按住电源按钮)时,我没有将数据写入文本文件。

任何输入都会有所帮助。提前致谢。

代码:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
using Microsoft.Win32;

    namespace Log
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
            }

            string CrLf = System.Environment.NewLine;
            private static int WM_QUERYENDSESSION = 0x11;
            private static int WM_ENDSESSION_CRITICAL = 0x40000000;

            private static bool systemShutdown = false;

            private void Form1_Load(object sender, EventArgs e)
            {
                Write_Data("[" + DateTime.Now.ToString() + "] " + "Power on");            
            }


            protected override void WndProc(ref System.Windows.Forms.Message m)
            {

                if (m.Msg == WM_QUERYENDSESSION)
                {
                    Write_Data("[" + DateTime.Now.ToString() + "] " + "Power off");
                    systemShutdown = true;
                }
                // If this is WM_QUERYENDSESSION, the closing event should be
                // raised in the base WndProc.

                    if (m.Msg == WM_ENDSESSION_CRITICAL)
                    {
                        Write_Data("[" + DateTime.Now.ToString() + "] " + "Critical power down");
                        systemShutdown = true;
                    }

                    base.WndProc(ref m);
            }       

            private void Write_Data(string str_Data)
            {
                using (StreamWriter output = new StreamWriter("../Log.txt", true))
                {
                    output.WriteLine(str_Data);
                }
            }
        }

    }
4

1 回答 1

2

阅读系统的事件日志http://msdn.microsoft.com/en-us/library/system.diagnostics.eventlog.aspx可能更有意义 ,只需找出这些事件发生的时间

或者,如果这不理想,而不是侦听关闭事件,而是连接到程序的终止,并假设程序正在关闭,计算机正在关闭,并在那里调用您的 Write_Data。请注意,控制台应用程序的此 SO 线程“退出时”中的某些解决方案在 Windows7 上不起作用,并且在控制台/表单应用程序关闭时表现不同

于 2013-04-11T15:45:30.510 回答