1to open Calculator of OS
2-------------------------
3System.Diagnostics.Process.Start("calc");
4
5to open Command prompt using dotnet
6------------------------------------
7System.Diagnostics.Process.Start("cmd");
8
9
10Similarly just replacing the string in start
11we can access Components of operating system
12, Which are opened from Run Mode
13
14
15
16