Suche Tool das im Hintergrund läuft, welches die Windows Ereignisanzeige überwacht und bei Fehler oder Warnung einen auffälligen Alarmtext anzeigt
Suche Tool das im Hintergrund läuft, welches die Windows Ereignisanzeige überwacht und bei Fehler oder Warnung einen auffälligen Alarmtext anzeigt.
Bitte markiere auch die Kommentare, die zur Lösung des Beitrags beigetragen haben
Content-ID: 308338
Url: https://administrator.de/contentid/308338
Ausgedruckt am: 24.11.2024 um 15:11 Uhr
10 Kommentare
Neuester Kommentar
Rechtsklick auf den Eventlog Eintrag und "Aufgabe an dieses Ereignis anfügen..."
Anschließend als Aktion "Meldung anzeigen" und einen Titel und Text hinterlegen.
Aber du solltest es dir gut überlegen, wem du diese Meldungen anzeigst. Nicht, dass die dich anrufen, weil unwichtige Software xy einen Fehler gemeldet hat.
Geht es dir hingegen um eine Testumgebung, währe vermutlich Centralized Windows Event Log oder ein Systemd besser geeignet.
Anschließend als Aktion "Meldung anzeigen" und einen Titel und Text hinterlegen.
Aber du solltest es dir gut überlegen, wem du diese Meldungen anzeigst. Nicht, dass die dich anrufen, weil unwichtige Software xy einen Fehler gemeldet hat.
Geht es dir hingegen um eine Testumgebung, währe vermutlich Centralized Windows Event Log oder ein Systemd besser geeignet.
Hi.
this can be programmed by yourself very easily:
http://www.codeproject.com/Articles/4857/A-realtime-event-log-monitorin ...
This is a very basic VB.Net code to msgbox all Application-Eventlog-Errors or Warnings:
But who wants that, really ?!
Regards
this can be programmed by yourself very easily:
http://www.codeproject.com/Articles/4857/A-realtime-event-log-monitorin ...
This is a very basic VB.Net code to msgbox all Application-Eventlog-Errors or Warnings:
Imports System.Diagnostics
Public Class Form1
Dim WithEvents log1 As EventLog
Private Sub Form1_FormClosing(sender As Object, e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
log1.EnableRaisingEvents = False
log1.Dispose()
End Sub
Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
log1 = New EventLog("Application")
log1.EnableRaisingEvents = True
End Sub
Private Sub log1_EntryWritten(sender As Object, e As System.Diagnostics.EntryWrittenEventArgs) Handles log1.EntryWritten
If e.Entry.EntryType = EventLogEntryType.Error Or e.Entry.EntryType = EventLogEntryType.Warning Then
Dim style As MsgBoxStyle
Select Case e.Entry.EntryType
Case EventLogEntryType.Error
style = MsgBoxStyle.Critical
Case EventLogEntryType.Warning
style = MsgBoxStyle.Exclamation
End Select
MsgBox(e.Entry.Message, style)
End If
End Sub
End Class
Regards
Zitat von @thomaz:
yeah, i found this tool too, but it uses windows balloon tips and theese tips disappear after some seconds.
This can be changed easily and replaced by dialogs you prefer.yeah, i found this tool too, but it uses windows balloon tips and theese tips disappear after some seconds.
primary i want to get informed immediately when smthg is wrong with my disks!
For this task there exist many SMART-Capable tools.Zitat von @thomaz:
how ?
See my code above, this displays a simple non closing msgbox to the user if an error or warning is raised in the application eventlog.yeah, i found this tool too, but it uses windows balloon tips and theese tips disappear after some seconds.
This can be changed easily and replaced by dialogs you prefer.