Tell me how to execute several commands at once by typing cmd in the command line:
C: \ app.exe / h / s / e
The task is to prohibit the appearance of the form window on all teams and link the teams together.
Code from Program.cs
static void Main(string[] args) { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); var form = new Form1(); if (args.Contains("/h")) { form.Check1(); } if (args.Contains("/s")) { form.Check2(); } if (args.Contains("/e")) { form.Check3(); } else { Application.Run(new Form1()); } }