f42dc76aba
Co-authored-by: Mason Harrell <mharrell@nti.local> Co-authored-by: Carrie Roberts <clr2of8@gmail.com>
19 lines
462 B
C#
19 lines
462 B
C#
using System.Diagnostics;
|
|
|
|
namespace Console
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
var proc = new ProcessStartInfo();
|
|
proc.UseShellExecute = true;
|
|
proc.WorkingDirectory = @"C:\Windows\System32";
|
|
proc.FileName = @"cmd.exe";
|
|
proc.Arguments = "/c calc.exe";
|
|
proc.WindowStyle = ProcessWindowStyle.Hidden;
|
|
Process.Start(proc);
|
|
}
|
|
}
|
|
}
|