Reputation: 4277
In my current installer I am creating event log for each application version. Doing so there are lots of events created for each version. Searching for correct event log is bit difficult for clients. So I want to do something like what Microsoft does.
I want to create a main folder with my company's name and inside it folder for major version `Sample: ABC Corp.
App 4.0
all event logs
App 5.0
all event logs`
Like in image Microsoft->Windows
Upvotes: 2
Views: 1207
Reputation: 630
Correct me if I'am wrong, but maybe you could use:
EventSourceCreationData eventSourceData = new EventSourceCreationData("Application","Application");
Upvotes: 1