Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm creating an ASP.NET application that will log some stuff to Windows EventLog. To do this an event source has to be created first. This requires administrative priviledges so I cannot do it in the ASP.NET app.

Is there an existing command-line application that is bundled with Windows that can create an event log source, or must I roll out my own?

share|improve this question

6 Answers

up vote 4 down vote accepted

The correct answer is here.

Alternatively, roll your own console app with...

EventLog.CreateEventSource(source, "Application")

See Initializing an EventLog Source

share|improve this answer
Yap, I know that one... just wondered if there is something already existing. – Vilx- Jan 15 '09 at 18:07
7  
Doesn't answer the question. "Eventcreate" is what the OP is looking for. – Ray Henry Apr 8 '11 at 15:35
2  
This does not work on Windows7, if you are not running the app with elevated privileges. It silently fails – Bhuvan Jun 20 '11 at 19:08

An example:

eventcreate /ID 1 /L APPLICATION /T INFORMATION  /SO MYEVENTSOURCE /D "My first log"

This will create a new event source named "MYEVENTSOURCE" under APPLICATION event log as INFORMATION event type.

Hope this helps! For more information:

or

eventcreate /? in CMD prompt.

I think this utility is included only from XP onwards.

share|improve this answer
8  
you have to right click on "cmd" and choose "run as admin" from vista on – Ian Ringrose Dec 17 '10 at 14:36
3  
+1 this should be the answer. – Daniel James Bryars Feb 23 '12 at 15:15
2  
eventcreate records an event under an existing source, it will not create a new source from scratch as the OP requested. – Paul Chavez Oct 8 '12 at 18:17

Throwing this in for Powershell 2.0.

Run this command once to register the event source:

New-EventLog -LogName Application -Source MyApp

Then use this to write to the log:

Write-EventLog `
    -LogName Application `
    -Source MyApp `
    -EntryType Error `
    -Message "Immunity to iocaine powder not detected, dying now" `
    -EventId 1
share|improve this answer
This works and addresses OP question. – JadziaMD May 16 at 14:53

You can also use Windows PowerShell with the following command:

if ([System.Diagnostics.EventLog]::SourceExists($source) -eq $false) {
    [System.Diagnostics.EventLog]::CreateEventSource($source, "Application")
}

Make sure to check that the source does not exist before calling CreateEventSource, otherwise it will throw an exception.

For more info:

share|improve this answer

eventcreate2 allows you to create custom logs, where eventcreate does not.

share|improve this answer

Or just use the command line command:

Eventcreate

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.