I have created a utility in C# to run various network admin tasks. I've schedule the tasks to run and everything works great, one problem I have is, one of the functions I want to run every half hour and one I want to run daily. I thought I could accomplish this by running it with a command line parameter, if run with parameter x run only x function, if y run only y function.
Is this possible? If not any suggestions on how I can accomplish this? My only other thought at this point is breaking it into 2 separate tools, but I prefer to keep it all together.
Thanks.