C#启动程序隐藏

Process proc = new Process();
proc.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
proc.StartInfo.FileName = appName;
proc.StartInfo.Arguments = args;
proc.Start();
原文地址:https://www.cnblogs.com/wuhailong/p/15625525.html