Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

event log

Featured Replies

hi all, ok i need a easy i mean easy way for a user to export their event log and email to me, does anyone know of a program that can simply export the eventlog and email to me, or maybe something i can put into a webpage that would read the eventlog and save it as a text file?

Dumpel which is part of the Windows Resource kit should work for you. Run it from command line and check out the syntax.

This should work:

@echo off

echo Gathering System Event log in TXT Format...
dumpel.exe -l system -f %COMPUTERNAME%_system.txt

echo Gathering Security Event log in TXT Format...
dumpel.exe -l security -f %COMPUTERNAME%_security.txt

echo Gathering Application Event log in TXT Format...
dumpel.exe -l application -f %COMPUTERNAME%_application.txt

echo Gathering Event logs in EVT Format...
dumpevt.exe %ComputerName%_ -s Security

That'll dump all of the logs usually found on a workstation to .txt and .evt files, named %COMPUTERNAME%_<logfiletype> for both .txt and .evt files. That way you can quickly look at the txt file for searching (or for parsing via vbscript :)), or you can load the .evt file up the slow way and see around. The benefit of the .txt files is that it exports the events exactly as they are on the machine - an evt file will use the .dlls on the machine viewing the files to show the data, and if your .dll files are different than on the machine the logs were generated, you may get incorrect or missing data in a log entry.

I found out that Dumpel got many bugs so i use systemtools dumpevt which is much more customisable to export eventlogs in a lot of ways.

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.