Question:The Certkiller .com network contains an application server named Certkiller -SR07.
You have been asked to profile a business application that can be accessible using the Event
Log API.
You want to achieve this by creating a custom event log on Certkiller -SR07.
What should you do? - (VB.Net)
A Use the following code:
EventLog.CreateEventSource("Application1", "Profile", "Certkiller -SR07")B Use the following code:
EventLog.CreateEventSource("Application1", "Profile")C Use the following code:
Dim sourceData As New EventSourceCreationData("Application1", "Profile")
sourceData.MachineName = "Certkiller -SR07"
EventLog.CreateEventSource(sourceData)D Use the following code:
Dim sourceData As New EventSourceCreationData("Application1", "Profile")
EventLog.CreateEventSource(sourceData)
+ AnswerC
+ Report