i want to pass a argument in c#.net to a console application i tried ProcessStartInfo but that can be used for immediate run of an application ... but i want to set the arguments for the application which will run at scheduled time

link|improve this question

38% accept rate
Are you asking how to schedule a task to run in the future? – Gabe Oct 4 '11 at 6:15
How are you scheduling the application? If you are using Windows Task Scheduler, then you can provide arguments while creating the task. – Jayanta Dey Oct 4 '11 at 6:19
@JayantaDey yes i am using windows scheduler but i have created the scheduler in my application and scheduling task using the same... – daljeet Oct 4 '11 at 7:06
Yes everybody i have solved the issue by creating a bat file in which i am writing the exe path along with the argument so when the scheduler runs the task at the specified time it will run the bat file which as written will run the exe and hence the argument will get passed. Though i have achieved my objective by this i will appreciate a good answer i.e. without having any need to create a bat file – daljeet Oct 4 '11 at 7:11
feedback

1 Answer

Use the arguments propery to pass command line arguments

http://msdn.microsoft.com/en-us/library/system.diagnostics.processstartinfo.arguments.aspx

Example:

  var info = new System.Diagnostics.ProcessStartInfo();
  info.FileName = "cmd.exe";
  info.Arguments = "/C";
  info.UseShellExecute = true;
  var process = new System.Diagnostics.Process();
  process.StartInfo = info;

  process.Start();
  process.WaitForExit();
link|improve this answer
this is working but only if i want to run the task straightaway but what if i want to schedule the task to run at specified time..then it doesn't work.... – daljeet Oct 4 '11 at 9:03
feedback

Your Answer

 
or
required, but never shown

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