在.NET中接收SENS事件

时间:2012-01-01 04:22:50

标签: c# .net com com+

我想在屏幕保护程序开启/关闭时接收SENS事件。我的代码基于this文章:

private static readonly string GUID = "{" + typeof(ScreensaverHandler).GUID.ToString() + "}";

[ComImport, Guid("4E14FBA2-2E22-11D1-9964-00C04FBBB345")]
private class EventSystem { }

[ComImport, Guid("7542E960-79C7-11D1-88F9-0080C7D771BF")]
private class EventSubcription { }

[ComImport, Guid("AB944620-79C6-11d1-88F9-0080C7D771BF")]
private class EventPublisher { }

[ComImport, Guid("cdbec9c0-7a68-11d1-88f9-0080c7d771bf")]
private class EventClass { }

public ScreensaverHandler() {
    IEventSystem es = (IEventSystem) new EventSystem();
    IEventSubscription sub = (IEventSubscription) new EventSubcription();
    sub.Description = "description";
    sub.SubscriptionName = "subscriptionname";
    sub.SubscriptionID = GUID;
    sub.InterfaceID = GetInterfaceGuid(typeof(SensEvents.ISensLogon));
    sub.SubscriberInterface = this; // implements SensEvents.ISensLogon 
    es.Store("EventSystem.EventSubscription", sub);
}

private static string GetInterfaceGuid(Type type) {
    object[] attributes = type.GetCustomAttributes(typeof(GuidAttribute), true);
    return "{" + ((GuidAttribute)attributes[0]).Value + "}";
}

问题是es.Store抛出一个带有Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))的System.UnauthorizedAccessException

1 个答案:

答案 0 :(得分:2)

您可能会遇到this Microsoft security bulletin的副作用。您可能需要放松事件系统dll的安全限制。

如果你还没有,我会先尝试这个管理员。我刚刚在Win Server 2008上测试了您的代码作为完整的管理员,没有任何问题。

另外,在。CodeProject的.Net中有关于事件系统的另一篇非常好的文章。