如何使用 C# 从网页打开事件查看器?

发布于 2024-10-30 07:56:42 字数 104 浏览 1 评论 0原文

我有一个要求,我需要从内部网页向内部用户打开事件查看器。我有一个链接“事件查看器”和一个下拉列表“服务器”,当用户选择服务器并单击该链接时,我想打开 Windows 事件查看器。如何做到这一点?

I have a requirement where I need to just open an Event Viewer to the internal users from an internal webpage. I have a link "Evetn Viewer" and a dropdown "Servers", when user select a server and click the link, I want to open the windows event viewer. How to do this?

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

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

发布评论

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

评论(2

夏见 2024-11-06 07:56:42
    EventLogSession session = new EventLogSession(
        "RemoteComputerName",// Remote Computer
        "Domain",// Domain
        "Username",// Username
        pw,
        SessionAuthentication.Default);

在此处了解更多信息如何使用 Visual C# .NET 管理事件日志

    EventLogSession session = new EventLogSession(
        "RemoteComputerName",// Remote Computer
        "Domain",// Domain
        "Username",// Username
        pw,
        SessionAuthentication.Default);

Read more here How to manage event logs using Visual C# .NET

别念他 2024-11-06 07:56:42

在 Windows 中打开事件查看器的唯一方法是使用某种类型的 ActiveX 控件。可以使用服务器名称作为参数来启动事件查看器:eventvwr myserver

以下是有关如何创建这些内容的一些基本指南: http://www.c -sharpcorner.com/uploadfile/dsandor/activexinnet11102005040748am/activexinnet.aspx

否则,您将被限制加载事件服务器端并在标记中返回它们(确保限制结果 - 事件日志可能会变得很漂亮)大的!)

The only way to open the Event Viewer within Windows would be with an ActiveX control of some type. Event Viewer can be started with the server name as an argument: eventvwr myserver.

Here's some basic guidance on how to create these: http://www.c-sharpcorner.com/uploadfile/dsandor/activexinnet11102005040748am/activexinnet.aspx

Otherwise you'll be restricted to loading the events server-side and returning them in the markup (make sure you restrict the results - event logs can get pretty big!)

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