I have a console application built in c#. I have scheduled this exe in Windows schedular on frequencies as hour and minute.
When two instances/schedules triggers at same time than it gives an exceptional message.
How can I enable multiple instancing property in my console app?
Really, stuck in it and unable to go out of it?
The answer to the question, is you need to do nothing specific to enable multiple instancing.
If there are exceptions occurring it suggests there are shared resource issues e.g. simultaneous IO.
You can however code to ‘prevent’ multiple instances. See this SO question. So check if the code contains something similar.