0

我想使用 Windows 服务检测并关闭任何程序(例如:Notepad.exe)。下面的代码在控制台应用程序中是不错的选择。

class Program
{
    private static SessionSwitchEventHandler sseh;
    static void Main(string[] args)
    {
        sseh = new SessionSwitchEventHandler(SystemEvents_SessionSwitch);
        SystemEvents.SessionSwitch += sseh;
        while (true) { }
    }

    static void SystemEvents_SessionSwitch(object sender, SessionSwitchEventArgs e)
    {
        Console.WriteLine(e.Reason.ToString());
    }
}

但是上面的代码在 windows 服务 windows 7 中不起作用。看看这个链接:

http://social.msdn.microsoft.com/Forums/eu/netfxcompact/thread/04b16fac-043a-41c3-add9-482c912e95be

我在windows服务中编写了下面的代码,它不能在win 7上运行,它每次都在控制台应用程序的windows 7上工作。

protected override void OnStart(string[] args)
{ 
    SystemEvents.SessionSwitch += SystemEvents_SessionSwitch;
    Console.ReadLine();
    SystemEvents.SessionSwitch -= SystemEvents_SessionSwitch;
}


static void SystemEvents_SessionSwitch(object sender, SessionSwitchEventArgs e)
{
    WriteToLogFile( e.Reason.ToString());
    if (e.Reason == SessionSwitchReason.SessionLock)
    {
         WriteToLogFile("SessionLock ");
    }
    if (e.Reason == SessionSwitchReason.SessionUnlock)
    {
         WriteToLogFile("SessionUnlock ");
    }
    if (e.Reason == SessionSwitchReason.SessionLogon)
    {
         WriteToLogFile("SessionLogon ");
    }
}

我已经阅读了这篇文章(http://rhauert.wordpress.com/category/ucc/)但我不能使用

protected override void OnStart(string[] args)
{
     WriteToText("Windows Service is started");
     SessionChangeHandler x = new SessionChangeHandler();
}
4

1 回答 1

1

MSDN:

SystemEvents.SessionSwitch 事件

仅当消息泵正在运行时才会引发此事件。在 Windows 服务中,除非使用隐藏表单或手动启动消息泵,否则不会引发此事件。有关显示如何使用 Windows 服务中的隐藏表单来处理系统事件的代码示例,请参阅 SystemEvents 类。

代码示例在此页面上,其中还指出:

服务没有消息循环,除非它们被允许与桌面交互。如果消息循环不是由隐藏表单提供的,如本例,服务必须在本地系统帐户下运行,并且需要手动干预才能与桌面交互。也就是说,管理员必须手动选中服务属性对话框的登录选项卡上的允许服务与桌面交互复选框。在这种情况下,会自动提供消息循环。仅当服务在本地系统帐户下运行时,此选项才可用。无法以编程方式启用与桌面的交互。

于 2012-11-15T10:23:18.000 回答