static void Main(string[] args)
{
Process proc = null;
try
{
string targetDir = (@"D:\adapters\setup");//this is where lies
proc = new Process();
= targetDir;
= "";
= ("10");//this is argument
= false;
();
();
}
catch (Exception ex)
{
("Exception Occurred :{0},{1}", ,());
}
}