I need to know that is it possible to call specific tab of System Configuration through c# application.
Till now I am only able to call msconfig.exe
through my code i.e.
ProcessStartInfo pf = new ProcessStartInfo(
Path.Combine(Environment.SystemDirectory, "msconfig.exe"));
pf.Verb = "runas";
Process.Start(pf);
Now I want to call only Single tab to open that is StartUp
at button click.
Please get me some solution.