Jump to content

Unkonsequentes Eventlog


Der letzte Beitrag zu diesem Thema ist mehr als 180 Tage alt. Bitte erstelle einen neuen Beitrag zu Deiner Anfrage!

Recommended Posts

Hallo!

 

Mit Eventcreate von XP kann ich in ein beliebiges Ereignisprotokoll schreiben.

Nur nicht in Security! (Zugriff verweigert)

Warum?

 

Mit einem kleinen VBScript kann ich alle Ereignisse aus den Eventlogs löschen.

Nur nicht die vom Internet Explorer! (da passiert einfach gar nichts!)

Warum?

strComputer = "."
Set objWMIService = GetObject("winmgmts:" & "{impersonationLevel=impersonate, (Backup, Security)}!\\" & strComputer & "\root\cimv2")

Set colLogFiles = objWMIService.ExecQuery("Select * from Win32_NTEventLogFile")

For Each objLogfile in colLogFiles
If objLogFile.FileSize > -1 Then
	strBackupLog = objLogFile.BackupEventLog("c:\scripts\" & objLogFile.LogFileName & ".evt")
objLogFile.ClearEventLog()
End If
Next

 

In den Eigenschaften von den Protokollen (Anwendung, Sicherheit, System, ..) wird bei allen eine Datei angegeben

%Systemroot%\System32\Config\...

Nur nicht beim Internet Explorer.

Hier ist die Zeile leer.

Warum?

 

tks!

Kiddy!

Link to comment
Der letzte Beitrag zu diesem Thema ist mehr als 180 Tage alt. Bitte erstelle einen neuen Beitrag zu Deiner Anfrage!

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...